diff options
Diffstat (limited to 'accel.h')
-rw-r--r-- | accel.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,8 +1,13 @@ #ifndef ACCEL_H #define ACCEL_H +#include <stdbool.h> +#include <stdint.h> + void accelInit (); void accelStart (); +bool accelProcess (); +volatile const int8_t *accelGet (); #endif /* ACCEL_H */ |