aboutsummaryrefslogtreecommitdiff
path: root/accel.h
blob: 7d82933e5396d31dc8c34664e73fcc590080ed35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 */