comparison gsm-fw/L1/include/l1_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/L1/include/l1_types.h@1e41550feec5
children 25a7fe25864c
comparison
equal deleted inserted replaced
142:15d5977390c2 143:afceeeb2cba1
1 /************* Revision Controle System Header *************
2 * GSM Layer 1 software
3 * L1_TYPES.H
4 *
5 * Filename l1_types.h
6 * Copyright 2003 (C) Texas Instruments
7 *
8 ************* Revision Controle System Header *************/
9
10 //--------------------------------------
11 // Basic DATA types used along L1 code.
12 //--------------------------------------
13 #if !defined (BOOL_FLAG)
14 #define BOOL_FLAG
15 typedef unsigned char BOOL;
16 #endif
17
18
19 #if !defined (NUCLEUS) && !defined CHAR_FLAG
20 #define CHAR_FLAG
21 typedef char CHAR;
22 #endif
23
24 typedef unsigned char UWORD8;
25 typedef signed char WORD8;
26
27 typedef unsigned short UWORD16;
28 typedef short WORD16;
29
30 typedef unsigned long UWORD32;
31 typedef long WORD32;
32 //--------------------------------------
33
34 typedef volatile UWORD16 API;
35 typedef volatile WORD16 API_SIGNED;
36
37
38