comparison src/condat/com/include/rom_tables.h @ 4:6e457872f745

src/condat: hybrid import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 08:01:56 +0000
parents
children
comparison
equal deleted inserted replaced
3:b4c81ea2d291 4:6e457872f745
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 */