osmo-bts-{trx,virtual}: do not advertise TCH/F14.4 NT

This mode is currently not supported.

Change-Id: I8a068162400c8efb194f2a169a67ee6ea5f081ca
Related: OS#6167
This commit is contained in:
Vadim Yanitskiy 2024-05-07 13:57:39 +02:00
parent 65337b739a
commit f21812b067
2 changed files with 4 additions and 2 deletions

View File

@ -196,8 +196,9 @@ int bts_model_trx_init(struct gsm_bts_trx *trx)
trx->support.chan_modes = NM_IPAC_MASK_CHANM_SPEECH
| NM_IPAC_MASK_CHANM_CSD_NT
| NM_IPAC_MASK_CHANM_CSD_T;
/* TODO: NM_IPAC_F_CHANM_CSD_T_14k4 (see OS#6167) */
/* TODO: missing rate adaptation for TCH/F14.4 (see OS#6167) */
trx->support.chan_modes &= ~NM_IPAC_F_CHANM_CSD_T_14k4;
trx->support.chan_modes &= ~NM_IPAC_F_CHANM_CSD_NT_14k4;
/* The nominal value for each TRX is later overwritten through VTY cmd
* 'nominal-tx-power' if present, otherwise through TRXC cmd NOMTXPOWER.

View File

@ -99,8 +99,9 @@ int bts_model_trx_init(struct gsm_bts_trx *trx)
trx->support.chan_modes = NM_IPAC_MASK_CHANM_SPEECH
| NM_IPAC_MASK_CHANM_CSD_NT
| NM_IPAC_MASK_CHANM_CSD_T;
/* TODO: NM_IPAC_F_CHANM_CSD_T_14k4 (see OS#6167) */
/* TODO: missing rate adaptation for TCH/F14.4 (see OS#6167) */
trx->support.chan_modes &= ~NM_IPAC_F_CHANM_CSD_T_14k4;
trx->support.chan_modes &= ~NM_IPAC_F_CHANM_CSD_NT_14k4;
return 0;
}