aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2021-01-12 22:55:58 +0100
committerlaforge <laforge@osmocom.org>2021-01-22 20:46:48 +0000
commit20a90a9b86bf254dfe543ccfcdf6a0b9181b8a90 (patch)
treef71cb7030a40dea042f32a8e5dd86d646fec4228
parentf7e25a1010328390269e6f069cf2ee9b3b510eba (diff)
bsc_vty: fix acch_repetition ber threshold strings
When setting the BER threshold for ACCH repetition the VTY displays wrong threshold values in the online help. Change-Id: I4c89ad130da328aba99663e5a2931a4007772bca Related: SYS#5114
-rw-r--r--src/osmo-bsc/bsc_vty.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index 5b4417ef0..478121723 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -2832,13 +2832,14 @@ DEFUN_USRATTR(cfg_bts_rep_rxqual,
REP_ACCH_STR
"Set UL-SACCH/DL-FACCH rxqual threshold-ber\n"
"0 disabled (always on)\n"
- "1 0.26% to 0.30% BER\n"
- "2 0.51% to 0.64% BER\n"
- "3 1.0% to 1.3% BER\n"
- "4 1.9% to 2.7% BER (default)\n"
- "5 3.8% to 5.4% BER\n"
- "6 7.6% to 11.0% BER\n"
- "7 Greater than 15.0% BER\n")
+ "1 BER >= 0.2%\n"
+ "2 BER >= 0.4%\n"
+ "3 BER >= 0.8%\n"
+ "4 BER >= 1.6%\n"
+ "5 BER >= 3.2%\n"
+ "6 BER >= 6.4%\n"
+ "7 BER >= 12.8%\n")
+ /* See also: GSM 05.08, section 8.2.4 */
{
struct gsm_bts *bts = vty->index;