tpd_calibrate.h 261 B

12345678910111213141516171819
  1. #ifndef TPD_CALIBRATE_H
  2. #define TPD_CALIBRATE_H
  3. #ifdef TPD_HAVE_CALIBRATION
  4. #ifndef TPD_CUSTOM_CALIBRATION
  5. extern int tpd_calmat[8];
  6. extern int tpd_def_calmat[8];
  7. #endif
  8. void tpd_calibrate(int *x, int *y);
  9. #else
  10. #define tpd_calibrate(x, y)
  11. #endif
  12. #endif