502bc8c72d
Remove probing from Marlin_main and move it into pat9125_probe so that it can support the various variants.
33 lines
702 B
C
Executable File
33 lines
702 B
C
Executable File
//pat9125.h
|
|
#ifndef PAT9125_H
|
|
#define PAT9125_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif //defined(__cplusplus)
|
|
|
|
|
|
extern uint8_t pat9125_PID1;
|
|
extern uint8_t pat9125_PID2;
|
|
|
|
extern int16_t pat9125_x;
|
|
extern int16_t pat9125_y;
|
|
extern uint8_t pat9125_b;
|
|
extern uint8_t pat9125_s;
|
|
|
|
extern uint8_t pat9125_probe(void); // Return non-zero if PAT9125 can be trivially detected
|
|
extern uint8_t pat9125_init(void);
|
|
extern uint8_t pat9125_update(void); // update all sensor data
|
|
extern uint8_t pat9125_update_y(void); // update _y only
|
|
extern uint8_t pat9125_update_bs(void); // update _b/_s only
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif //defined(__cplusplus)
|
|
|
|
#endif //PAT9125_H
|