Cleanup pat9125.h

This commit is contained in:
Alex Voinea 2022-02-25 18:18:18 +01:00 committed by D.R.racer
parent c46b97ec2d
commit bdfd3305cb
1 changed files with 1 additions and 8 deletions

View File

@ -1,12 +1,7 @@
//pat9125.h #pragma once
#ifndef PAT9125_H
#define PAT9125_H
#include <inttypes.h> #include <inttypes.h>
extern uint8_t pat9125_PID1;
extern uint8_t pat9125_PID2;
extern int16_t pat9125_x; extern int16_t pat9125_x;
extern int16_t pat9125_y; extern int16_t pat9125_y;
extern uint8_t pat9125_b; extern uint8_t pat9125_b;
@ -17,5 +12,3 @@ extern uint8_t pat9125_init(void);
extern uint8_t pat9125_update(void); // update all sensor data 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_y(void); // update _y only
extern uint8_t pat9125_update_bs(void); // update _b/_s only extern uint8_t pat9125_update_bs(void); // update _b/_s only
#endif //PAT9125_H