blob: 2d4c2bfb56f1a5232e324308ebb8781e098b66a1 (
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
27
28
29
30
31
32
33
34
35
36
37
|
/*********************************************************************
*
* Copyright (C) 2012 Motorola, Inc.
*
**********************************************************************
File : MemMapFusionSensor.h
Purpose :
**********************************************************************/
#ifndef __MEMMAP_FUSIONSENSOR_H__
#define __MEMMAP_FUSIONSENSOR_H__
/****************************** Defines *******************************/
typedef struct memMapFusion {
u8 version;
u8 testCmd;
u16 dummy;
s32 eulerPitch;
s32 eulerRoll;
s32 eulerYaw;
s32 localX;
s32 localY;
s32 localZ;
s32 worldX;
s32 worldY;
s32 worldZ;
s16 heading;
s8 heading_accuracy;
} sFusionData;
/**************************** Globals ********************************/
/***************************** Prototypes *****************************/
#endif /* __MEMMAP_FUSIONSENSOR_H__ */
|