Loading...
Searching...
No Matches
sensors.h
1
6
7#ifndef _SENSORS_H
8#define _SENSORS_H
9
10#include "stdarg.h"
11#include "stm32f439xx.h"
12
13#define XINDEX 0
14#define YINDEX 1
15#define ZINDEX 2
16
17#define ROLL_INDEX 0
18#define PITCH_INDEX 1
19#define YAW_INDEX 2
20
21#define ACCEL_SCALE_HIGH 32
22#define ACCEL_SCALE_LOW 16
23
24void configure_SPI1_Sensor_Suite();
25
26#endif