blob: 51fad5d13e516d84fa05115d4fe6d3547ec0e3bf (
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
 | /*********************************************************************
*
*   Copyright (C) 2012 Motorola, Inc.
*
**********************************************************************
File    : MemMapTempSensor.h
Purpose :
**********************************************************************/
#ifndef __MEMMAP_TEMPSENSOR_H__
#define __MEMMAP_TEMPSENSOR_H__
/****************************** Defines *******************************/
typedef struct memMapTemp {
	u8 version;
	u8 testCmd;
	s16 extrnlTemp;
	s16 intrnlTemp;
} sTempData;
/**************************** Globals ********************************/
/***************************** Prototypes *****************************/
#endif
 |