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

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

void gyroInit ();
void gyroStart ();
bool gyroProcess ();
void gyroResetAngle ();
const int16_t *gyroGetAngle ();
volatile const int16_t *gyroGetRaw ();

#endif /* GYROSCOPE_H */