Hi,
I am mapping NB-IoT and LTE-M1 indoors coverage using the nRF9160, mostly just to familiarize myself with the nRF91 DK. I have a basic application which toggles between NB and M1 mode and records the RSRP for each of them, and I have a few questions about the CEREG and CESQ commands.
Below is the log output when connecting to NB-IoT and polling CEREG and CESQ every 10 seconds. In the log, '--->' denotes commands sent to the modem, and '<---' denotes the modem response.
[00:00:01.866,394] ---> AT+CFUN=4 [00:00:01.887,420] ---> AT%XSYSTEMMODE=0,1,0,0 [00:00:01.911,285] ---> AT+CFUN=1 [00:00:01.962,219] ---> AT+CESQ [00:00:01.976,470] <--- +CESQ: 99,99,255,255,255,255 [00:00:01.985,198] ---> AT+CEREG? [00:00:01.999,664] <--- +CEREG: 0,4,"FFFE","FFFFFFFF",9 [00:00:12.015,777] ---> AT+CESQ [00:00:12.030,120] <--- +CESQ: 99,99,255,255,255,255 [00:00:12.038,879] ---> AT+CEREG? [00:00:12.053,253] <--- +CEREG: 0,4,"FFFE","FFFFFFFF",9 // some time passes [00:01:02.250,152] ---> AT+CESQ [00:01:02.264,495] <--- +CESQ: 99,99,255,255,255,255 [00:01:02.273,223] ---> AT+CEREG? [00:01:02.287,628] <--- +CEREG: 0,4,"FFFE","FFFFFFFF",9 [00:01:12.297,027] ---> AT+CESQ [00:01:12.311,370] <--- +CESQ: 99,99,255,255,19,46 [00:01:12.319,915] ---> AT+CEREG? [00:01:12.334,320] <--- +CEREG: 0,2,"9FC5","0103A167",9 [00:01:22.343,902] ---> AT+CESQ [00:01:22.364,318] <--- +CESQ: 99,99,255,255,19,46 [00:01:22.372,802] ---> AT+CEREG? [00:01:22.393,463] <--- +CEREG: 0,2,"9FC5","0103A167",9
Initially, the modem status reported by the CEREG command is 4 (unknown), and then it flips to 2 (not registered, searching). At the same time I receive valid RSRP values from the CESQ command. The modem status never changes after this. Is this expected? Can I have valid RSRP, <tac> and <ci> on NB-IoT without having modem status equal to 1 or 5? Repeating the same procedure for LTE-M1 always gives initial modem status 4, then 5.
I'm on nRF Connect SDK v1.0.0, modem FW mfw_nrf9160_1.1.0. The SIM card is an iBasis SIM which was provided with the nRF9160 DK.