comparison chipsetsw/layer1/include/l1_types.h @ 0:509db1a7b7b8

initial import: leo2moko-r1
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 01 Jun 2015 03:24:05 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:509db1a7b7b8
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