FreeCalypso > hg > leo2moko-debug
comparison chipsetsw/layer1/include/l1_varex.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_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 |
