comparison gsm-fw/L1/include/l1_varex.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_varex.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_VAREX.H
4 *
5 * Filename l1_varex.h
6 * Copyright 2003 (C) Texas Instruments
7 *
8 ************* Revision Controle System Header *************/
9
10 #ifdef L1_ASYNC_C
11
12 #if (LONG_JUMP == 3)
13 #pragma DATA_SECTION(l1s,".l1s_global")
14 #pragma DATA_SECTION(l1s_dsp_com,".l1s_global")
15 #pragma DATA_SECTION(l1a_l1s_com,".l1s_global")
16 #pragma DATA_SECTION(l1s_tpu_com,".l1s_global")
17 #pragma DATA_SECTION(l1_config,".l1s_global")
18 #endif
19
20 T_L1S_GLOBAL l1s;
21 T_L1A_GLOBAL l1a;
22
23 T_L1A_L1S_COM l1a_l1s_com;
24 T_L1S_DSP_COM l1s_dsp_com;
25 T_L1S_TPU_COM l1s_tpu_com;
26
27 #if (L1_DYN_DSP_DWNLD == 1) // equivalent to an API_HISR flag
28 T_L1_API_HISR l1_apihisr;
29 T_L1A_API_HISR_COM l1a_apihisr_com;
30 #endif
31
32 // variables for L1 configuration
33 T_L1_CONFIG l1_config;
34
35 #else // L1_ASYNC_C
36
37 extern T_L1S_GLOBAL l1s;
38 extern T_L1A_GLOBAL l1a;
39
40 extern T_L1A_L1S_COM l1a_l1s_com;
41 extern T_L1S_DSP_COM l1s_dsp_com;
42 extern T_L1S_TPU_COM l1s_tpu_com;
43
44 #if (L1_DYN_DSP_DWNLD == 1) // equivalent to an API_HISR flag
45 extern T_L1_API_HISR l1_apihisr;
46 extern T_L1A_API_HISR_COM l1a_apihisr_com;
47 #endif
48
49 // variables for L1 configuration
50 extern T_L1_CONFIG l1_config;
51 #endif
52
53
54 extern const UWORD8 ramBootCode[]; // dummy DSP code for boot.
55
56