This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nRF9160 don't see the NB-IoT networks

I alredy run the assert tracking about 4 months ago on preliminary firmware.

Now I updated the modem firmware to v1.0.0 and compiled the last stable AT Client project from repositary.

Now I can't see any networks at all (AT+COPS=? shown nothing) and as resul i can connect and register anywhere.
At the same time the network is present and the SIM is working - uBlox SARA-R410 on the same table working fine.

I tried some samples from the repositary and got the same result - the nRF9160 can't connect to the network!

What's may going wrong? How to fix it.

Parents Reply
  • I see that it's required to read CFUN status and got 1 before works onward.

    I configured the bands (B3, B8, B20) but I still see the 0 (unknown) in answer.

    ***** Booting Zephyr OS v1.14.99-ncs2 *****
    
    The AT host sample started
    
    AT%XCBAND
    %XCBAND: 0
    
    OK
    
    AT%XCBAND=?
    %XCBAND: (1,2,3,4,5,8,12,13,14,17,18,19,20,25,26,28,66)
    
    OK
    
    AT%XBANDLOCK=1,"10000000000010000100"
    OK
    
    AT%XCBAND
    %XCBAND: 0
    
    OK
    
    
    AT%XCBAND=?
    %XCBAND: (3,8,20)
    
    OK
    
    AT+CFUN?
    +CFUN: 4
    
    OK
    
    AT+CFUN=1
    OK
    
    AT+CFUN?
    +CFUN: 1
    
    OK
    
    AT+COPS?
    +COPS: 0
    
    OK
    
    AT+COPS?
    ERROR
    
    AT+COPS?
    +COPS: 0
    
    OK
    
    AT+CEREG=2
    OK
    
    AT+COPS?
    +COPS: 0
    
    OK
    
    AT+CEREG?
    +CEREG: 2,2,"FFFE","FFFFFFFF",7
    
    OK
    
    AT+CEREG?
    +CEREG: 2,2,"FFFE","FFFFFFFF",7
    
    OK

Children
  • Ok, attachment to a network isn't likely happen that quickly. I have seen the attachment take several minutes in poor reception areas. You need to give the module at least a minute before testing if it has made a connection. It is not necessary to read the status of CFUN, CFUN must be set to 1 in order for the modem to activate but you do not need to read the status of CFUN for the modem to attach. I wouldn't worry too much about band selection, this should be automatic as the device will default to scanning all LTE bands.

    An additioanl question, are you testing this inside a building or in the open air, away from structures? From my own personal testing with the pca10090 DK, the reception will be quite low inside a structure, usually lower than -110dBm

Related