comparison src/cs/drivers/drv_core/sys_types.h @ 0:4e78acac3d88

src/{condat,cs,gpf,nucleus}: import from Selenite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:23:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4e78acac3d88
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__ */