comparison nuc-fw/include/sys_types.h @ 93:45911ad957fd

nuc-fw: beginning to integrate TI's BSP code
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sat, 31 Aug 2013 23:43:23 +0000
parents
children 5b7403f6ae93
comparison
equal deleted inserted replaced
92:f459043fae0c 93:45911ad957fd
1 /**********************************************************
2 * GSM/GPRS TI S/W software
3 *
4 * Filename sys_types.h
5 *
6 *
7 * Redefine the types for the TI GSM/GPRS system software
8 *
9 **********************************************************/
10
11 #ifndef __SYS_TYPES_H__
12 #define __SYS_TYPES_H__
13
14 typedef unsigned char SYS_BOOL;
15
16 typedef unsigned char SYS_UWORD8;
17 typedef signed char SYS_WORD8;
18
19 typedef unsigned short SYS_UWORD16;
20 typedef short SYS_WORD16;
21
22 typedef unsigned long SYS_UWORD32;
23 typedef long SYS_WORD32;
24
25
26 typedef void (*SYS_FUNC)(void); /* pointer to a function */
27
28 #endif /* __SYS_TYPES_H__ */