comparison gsm-fw/include/sys_types.h @ 143:afceeeb2cba1

Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 12 Nov 2013 05:35:48 +0000
parents nuc-fw/include/sys_types.h@5b7403f6ae93
children
comparison
equal deleted inserted replaced
142:15d5977390c2 143:afceeeb2cba1
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__ */