summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-12-01 12:57:28 +0100
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-12-01 12:57:41 +0100
commit4bbe47b02bfd0ab34119402b70f904744bf02028 (patch)
tree3ffa1bd0f4b4749f31a4e625a95f3fb1f333b2aa
parenta7298e316f8d4cb603194adfdb4445192c975183 (diff)
firmware/layer1: clarify the content of Measurement results
-rw-r--r--src/target/firmware/layer1/prim_utils.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/target/firmware/layer1/prim_utils.c b/src/target/firmware/layer1/prim_utils.c
index c85da717..9c58d15e 100644
--- a/src/target/firmware/layer1/prim_utils.c
+++ b/src/target/firmware/layer1/prim_utils.c
@@ -43,10 +43,22 @@ static uint8_t ubMeas[23] = {
/* lapdm header */
0x01, 0x03, 0x49,
- /* Measurement report */
- 0x06, 0x15, 0x36, 0x36, 0x01, 0xC0, 0x00, 0x00,
+ /* RR Management messages, Measurement Report */
+ 0x06, 0x15,
+
+ /* Measurement results (see 3GPP TS 44.018, section 10.5.2.20):
+ * 0... .... = BA-USED: 0
+ * .0.. .... = DTX-USED: DTX was not used
+ * ..11 0110 = RXLEV-FULL-SERVING-CELL: -57 <= x < -56 dBm (54)
+ * 0... .... = 3G-BA-USED: 0
+ * .0.. .... = MEAS-VALID: The measurement results are valid
+ * ..11 0110 = RXLEV-SUB-SERVING-CELL: -57 <= x < -56 dBm (54)
+ * 0... .... = SI23_BA_USED: 0
+ * .000 .... = RXQUAL-FULL-SERVING-CELL: BER < 0.2%, Mean value 0.14% (0)
+ * .... 000. = RXQUAL-SUB-SERVING-CELL: BER < 0.2%, Mean value 0.14% (0)
+ * .... ...1 11.. .... = NO-NCELL-M: Neighbour cell information not available */
+ 0x36, 0x36, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00
};