aboutsummaryrefslogtreecommitdiff
path: root/gyro.h
blob: ac3550ef6e6a0e4834544a1b160b7c2cbbb91e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GYROSCOPE_H
#define GYROSCOPE_H

#include <stdbool.h>
#include <stdint.h>

void gyroInit ();
void gyroStart ();
bool gyroRead ();
volatile const int16_t *gyroGet ();

#endif /* GYROSCOPE_H */