FreeCalypso > hg > freecalypso-citrine
comparison include/sys_types.h @ 0:75a11d740a02
initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 09 Jun 2016 00:02:41 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:75a11d740a02 |
|---|---|
| 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__ */ |
