sysmobts: Add mappings for MuteRfReq/MuteRfCnf

This add the mappings for SuperFemto_PrimId_MuteRfReq and
SuperFemto_PrimId_MuteRfCnf to the arrays femtobts_sysprim_type,
femtobts_sysprim_names, and femtobts_sysprim_req2conf.

Sponsored-by: On-Waves ehf
This commit is contained in:
Jacob Erlbeck 2013-11-04 14:56:10 +01:00 committed by Holger Hans Peter Freyther
parent 0133ff3866
commit f3108fafab
1 changed files with 11 additions and 0 deletions

View File

@ -116,6 +116,10 @@ const enum l1prim_type femtobts_sysprim_type[SuperFemto_PrimId_NUM] = {
[SuperFemto_PrimId_SetRxCalibTblReq] = L1P_T_REQ,
[SuperFemto_PrimId_SetRxCalibTblCnf] = L1P_T_CONF,
#endif
#if SUPERFEMTO_API_VERSION >= SUPERFEMTO_API(3,6,0)
[SuperFemto_PrimId_MuteRfReq] = L1P_T_REQ,
[SuperFemto_PrimId_MuteRfCnf] = L1P_T_CONF,
#endif
};
const struct value_string femtobts_sysprim_names[SuperFemto_PrimId_NUM+1] = {
@ -142,6 +146,10 @@ const struct value_string femtobts_sysprim_names[SuperFemto_PrimId_NUM+1] = {
{ SuperFemto_PrimId_GetRxCalibTblCnf, "GET-RX-CALIB.cnf" },
{ SuperFemto_PrimId_SetRxCalibTblReq, "SET-RX-CALIB.req" },
{ SuperFemto_PrimId_SetRxCalibTblCnf, "SET-RX-CALIB.cnf" },
#endif
#if SUPERFEMTO_API_VERSION >= SUPERFEMTO_API(3,6,0)
{ SuperFemto_PrimId_MuteRfReq, "MUTE-RF.req" },
{ SuperFemto_PrimId_MuteRfCnf, "MUTE-RF.cnf" },
#endif
{ 0, NULL }
};
@ -159,6 +167,9 @@ const SuperFemto_PrimId_t femtobts_sysprim_req2conf[SuperFemto_PrimId_NUM] = {
[SuperFemto_PrimId_GetRxCalibTblReq] = SuperFemto_PrimId_GetRxCalibTblCnf,
[SuperFemto_PrimId_SetRxCalibTblReq] = SuperFemto_PrimId_SetRxCalibTblCnf,
#endif
#if SUPERFEMTO_API_VERSION >= SUPERFEMTO_API(3,6,0)
[SuperFemto_PrimId_MuteRfReq] = SuperFemto_PrimId_MuteRfCnf,
#endif
};
const struct value_string femtobts_l1sapi_names[GsmL1_Sapi_NUM+1] = {