blob: 5ba43e340e55b345bcb3ff72de682bfbdcc48e7d (
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
|
/*********************************************************************
*
* Copyright (C) 2012 Motorola, Inc.
*
**********************************************************************
File : MemMapAccelSensor.h
Purpose :
**********************************************************************/
#ifndef __MEMMAP_ACCELSENSOR_H__
#define __MEMMAP_ACCELSENSOR_H__
/****************************** Defines *******************************/
typedef struct memMapAccel {
u8 version;
u8 testCmd;
u16 dummy; /* Align to 32-bit boundary */
s32 x;
s32 y;
s32 z;
} sAccelData;
/**************************** Globals ********************************/
/***************************** Prototypes *****************************/
#endif /* __MEMMAP_ACCELSENSOR_H__ */
|