From 6b36cce2eac3ee77f930e5c6b3597206d6136084 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sun, 7 Feb 2021 23:02:45 +0100 Subject: power_control: cosmetic: fix swapped {L,U}_RXQUAL_XX_P comments Change-Id: I2fe198f9275f4e5407ad6fdfa68d4fa7d603e333 Related: SYS#4918 --- src/common/gsm_data.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/gsm_data.c b/src/common/gsm_data.c index b3f9f2d9..7cf48bfd 100644 --- a/src/common/gsm_data.c +++ b/src/common/gsm_data.c @@ -441,8 +441,8 @@ const struct gsm_power_ctrl_params power_ctrl_params_def = { /* RxQual measurement parameters */ .rxqual_meas = { /* Thresholds for RxQual (see 3GPP TS 45.008, A.3.2.1) */ - .lower_thresh = 3, /* U_RXQUAL_XX_P (0.8% <= BER < 1.6%) */ - .upper_thresh = 0, /* L_RXQUAL_XX_P (BER < 0.2%) */ + .lower_thresh = 3, /* L_RXQUAL_XX_P (0.8% <= BER < 1.6%) */ + .upper_thresh = 0, /* U_RXQUAL_XX_P (BER < 0.2%) */ /* FIXME: RxQual averaging is not yet implemented */ .algo = GSM_PWR_CTRL_MEAS_AVG_ALGO_NONE, -- cgit v1.2.3