FreeCalypso > hg > fc-magnetite
comparison src/condat3/com/include/rom_tables.h @ 18:c8bd5a927942
src/condat3: import of "condat" tree from TCS3.2, pruned
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 27 Sep 2016 21:25:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
17:6323e661f2ed | 18:c8bd5a927942 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-PS | |
4 | Modul : DRV_ROM_TABLES | |
5 +----------------------------------------------------------------------------- | |
6 | Copyright 2002 Texas Instruments Berlin, AG | |
7 | All rights reserved. | |
8 | | |
9 | This file is confidential and a trade secret of Texas | |
10 | Instruments Berlin, AG | |
11 | The receipt of or possession of this file does not convey | |
12 | any rights to reproduce or disclose its contents or to | |
13 | manufacture, use, or sell anything it may describe, in | |
14 | whole, or in part, without the specific written consent of | |
15 | Texas Instruments Berlin, AG. | |
16 +----------------------------------------------------------------------------- | |
17 | Purpose : This Module defines the operator list tables in ROM | |
18 +----------------------------------------------------------------------------- | |
19 */ | |
20 | |
21 #ifndef ROM_TABLES_H | |
22 #define ROM_TABLES_H | |
23 | |
24 | |
25 /*==== INCLUDES ===================================================*/ | |
26 | |
27 /* The swconfig.cfg is genarated file and we are including here to remove | |
28 multiple inclusions in other .c files */ | |
29 | |
30 #include "swconfig.cfg" | |
31 | |
32 | |
33 /* NHK: | |
34 * Once the tables plmn_compressed, plmn_dict_offset and plmn_dict go to ROM, their names below should match corresponding ROM addresses | |
35 * KSR: Moved to g23m\condat\com\src\drivers\rom_tables.c | |
36 */ | |
37 #ifdef TI_PS_OP_OPN_TAB_ROMBASED | |
38 EXTERN const UBYTE *const ptr_plmn_compressed; | |
39 EXTERN const USHORT *const ptr_plmn_dict_offset; | |
40 EXTERN const UBYTE *const ptr_plmn_dict; | |
41 #endif /* TI_PS_OP_OPN_TAB_ROMBASED */ | |
42 | |
43 /* Changes for ROM data */ | |
44 /* NHK: | |
45 * Once the tables chset and gsmToAsciiTable go to ROM, their names below should match corresponding ROM addresses | |
46 * KSR: Moved to g23m\condat\com\src\drivers\rom_tables.c | |
47 */ | |
48 #ifdef TI_PS_OP_CNV_TAB_ROMBASED | |
49 #define CSCS_CHSET_Chars 256 | |
50 EXTERN const UBYTE (*const chset)[CSCS_CHSET_Chars]; | |
51 EXTERN const UBYTE *const gsmToAsciiTable; | |
52 EXTERN const UBYTE *const hexVal; | |
53 #endif /* TI_PS_OP_CNV_TAB_ROMBASED */ | |
54 | |
55 #endif /* #ifndef ROM_TABLES_H */ |