-
Notifications
You must be signed in to change notification settings - Fork 2
/
imucleaner.h
27 lines (21 loc) · 873 Bytes
/
imucleaner.h
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
27
/************************************************************************/
/* */
/* P R O J E K T A V A L O N */
/* */
/* imucleaner.h The Imu-Clean-Class */
/* */
/* Last Change May 4th 2009; Hendrik Erckens */
/* */
/************************************************************************/
#ifndef IMUCLEANER_H
#define IMUCLEANER_H
#include <DDXStore.h>
#include <DDXVariable.h>
DDX_STORE_TYPE(imuCleanData,
struct
{
struct {double roll; double pitch; double yaw;} attitude; // in °
struct {double x; double y; double z; double drift;} velocity; // velocity in knots
}
);
#endif //imucleaner