blob: 003488ad21e46a71e91fec788bdb5c893b7d2438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//=====================================================================================================
// IMU.h
// S.O.H. Madgwick
// 25th September 2010
//=====================================================================================================
//
// See IMU.c file for description.
//
//=====================================================================================================
#ifndef IMU_h
#define IMU_h
//----------------------------------------------------------------------------------------------------
// Variable declaration
extern float q0, q1, q2, q3; // quaternion elements representing the estimated orientation
//---------------------------------------------------------------------------------------------------
// Function declaration
void IMUupdate(float gx, float gy, float gz, float ax, float ay, float az);
#endif
//=====================================================================================================
// End of file
//=====================================================================================================
|