comparison gsm-fw/gpf/conf/barecomp.c @ 622:8b07fb500d36

L1 standalone: PEIs hooked into gpf/conf/barecomp.c
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 31 Aug 2014 02:16:30 +0000
parents e8ed76bbf556
children
comparison
equal deleted inserted replaced
621:aa93994e9f63 622:8b07fb500d36
36 /*==== EXTERNALS ==================================================*/ 36 /*==== EXTERNALS ==================================================*/
37 37
38 extern SHORT tstrcv_pei_create(T_PEI_INFO const **Info); 38 extern SHORT tstrcv_pei_create(T_PEI_INFO const **Info);
39 extern SHORT tstsnd_pei_create(T_PEI_INFO const **Info); 39 extern SHORT tstsnd_pei_create(T_PEI_INFO const **Info);
40 40
41 #if CONFIG_GSM 41 #if CONFIG_L1_STANDALONE
42 extern SHORT l1_pei_create (T_PEI_INFO const **Info); 42 extern SHORT l1_pei_create (T_PEI_INFO const **Info);
43 extern SHORT l1stand_fwd_pei_create (T_PEI_INFO const **info);
43 #endif 44 #endif
44 45
45 /*==== VARIABLES ==================================================*/ 46 /*==== VARIABLES ==================================================*/
46 47
47 //EF For normal Test Definition Language (TDL) TAP usage set newTstHeader = FALSE 48 //EF For normal Test Definition Language (TDL) TAP usage set newTstHeader = FALSE
66 { 67 {
67 { tstsnd_pei_create, NULL, ASSIGNED_BY_TI }, 68 { tstsnd_pei_create, NULL, ASSIGNED_BY_TI },
68 { NULL, NULL, 0 } 69 { NULL, NULL, 0 }
69 }; 70 };
70 71
71 #if CONFIG_GSM 72 #if CONFIG_L1_STANDALONE
73 const T_COMPONENT_ADDRESS l1fwd_list[] =
74 {
75 { l1stand_fwd_pei_create, NULL, ASSIGNED_BY_TI },
76 { NULL, NULL, 0 }
77 };
78
72 const T_COMPONENT_ADDRESS l1_list[] = 79 const T_COMPONENT_ADDRESS l1_list[] =
73 { 80 {
74 { l1_pei_create, NULL, ASSIGNED_BY_TI }, 81 { l1_pei_create, NULL, ASSIGNED_BY_TI },
75 { NULL, NULL, 0 } 82 { NULL, NULL, 0 }
76 }; 83 };
78 85
79 const T_COMPONENT_ADDRESS *ComponentTables[]= 86 const T_COMPONENT_ADDRESS *ComponentTables[]=
80 { 87 {
81 tstrcv_list, 88 tstrcv_list,
82 tstsnd_list, 89 tstsnd_list,
83 #if CONFIG_GSM 90 #if CONFIG_L1_STANDALONE
91 l1fwd_list,
84 l1_list, 92 l1_list,
85 #endif 93 #endif
86 NULL 94 NULL
87 }; 95 };
88 96