nRF 9160 DK LTE modem turn on

Hello,

I am beginner for the nRF 9160 DK I need to turn on the LTE modem. My questions are,

  1.  Will it work for any 4FF  4G LTE enabled sim?
  2.  I use 4G LTE  enabled sim but the Link monitor show result in figure below.

Do I need to update the modem firmware or change the 4FF sim card. Can nay one give guide for turn on the modem.

Parents
  • Hi,

     Will it work for any 4FF  4G LTE enabled sim?

    The nRF9160 should work with any LTE-M or NB-IoT enabled SIM. "Normal" 4G LTE is not supported.

     I use 4G LTE  enabled sim but the Link monitor show result in figure below.

    What application are you running on the nRF9160?

    I recommend you use the at_client sample, and run the following AT commands:

    // You probably have to configure the modem to use NB-IoT
    AT%XSYSTEMMODE=0,1,1,0
    AT+CFUN=0
    
    // These commands gives us usefull notifications when the modem is running
    AT+CGMR
    AT+CEREG=5
    AT+CMEE=1
    AT+CNEC=24
    AT%CESQ=1
    
    // If you are running mfw_nrf9160_1.3.0 or newer (check the output of AT+CGMR)
    AT%MDMEV=1
    
    // Finally turn on the modem
    AT+CFUN=1

    After sending AT+CFUN=1, could you let the modem run for a while, and if it doesn't connect to a network send me the log (press the "open log file" button, and upload the file)?

    Best regards,

    Didrik

  • What application are you running on the nRF9160?

    I'm trying to run MQTT_ sample code for test subscribe and publish data. 

Reply Children
Related