nRF9161 DevAcademy Course

I am attempting to work thru the tutorial exactly per the instructions, and I'm stuck in Lesson 1 at

         6. Wait for the device to connect to nRF Cloud.

The Cellular Monitor shows the board connected to AT&T with SNR at 10dB, which ought to be plenty for anything it needs to do. The board is properly configured into nRFCloud.

What am I missing?

Parents
  • SteveHx said:
    Ideally I would like a sequence of commands that sends data that I can see displayed on nRF Cloud, and a second sequence that sends a text message to my phone. Is it really too much to ask for a simple example?

    No so hard when you specify what you want to do. I just tried with SLM example commands, below is the related pages I followed and logs generated.

    nRF Cloud following example:  https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.6.0/nrf/applications/serial_lte_modem/doc/NRFCLOUD_AT_commands.html#example

    Pay attention that you need to provision the device to nRF Cloud with UUID, this is mentioned in "Note" above page.

    Ready
    > AT+CEREG=5
    
    OK
    
    > AT+CFUN=1
    
    OK
    
    +CEREG: 2,"81A3","03238D0A",7
    
    +CEREG: 1,"81A3","03238D0A",7,,,"11100000","11100000"
    > AT+CGDCONT?
    
    +CGDCONT: 0,"IPV4V6","telenor.smart","10.214.142.83 2A02:2121:010C:8114:0000:0000:A596:8476",0,0
    
    OK
    > AT#XNRFCLOUD=1
    
    OK
    
    #XNRFCLOUD: 1,0
    > AT#XNRFCLOUD=2
    
    OK
    > {"msg":"Hello, nRF Cloud"}+++

    SMS following:  developer.nordicsemi.com/.../SMS_AT_commands.html

    "AT+CPSMS=0" and "AT+CEDRXS=0" are used to turn off PSM and eDRX respectively, so the power saving feature will not delay SMS receiving.

    Please pay attention that no all Cellular IoT SIM card will support SMS, you need to check with your operator if they have enabled this feature.

    Ready
    > AT+CFUN?
    
    +CFUN: 0
    
    OK
    > AT%XSYSTEMMODE=1,1,1,0
    
    OK
    > AT+CEREG=5
    
    OK
    > AT+CPSMS=0
    
    OK
    
    > AT+CEDRXS=0
    
    OK
    > AT+CFUN=1
    
    OK
    
    +CEREG: 2,"81A3","031B4301",7
    
    +CEREG: 1,"81A3","031B4301",7,,,"11100000","11100000"
    
    +CEREG: 1,"81A3","03238D0A",7,,,"11100000","11100000"
    > at#xsms=1
    
    OK
    > at#xsms=2,"+4740xxxxxx","SLM test to Chalie's phone"
    
    OK
    
    +CDS: 24
    06030A917404936651424052315100804240523151008000
    
    #XSMS: "24-04-25 13:16:14 UTC+02:00","4740xxxxxx","Reply from my phone"
    
    +CMT: "+4740396615",35
    06917464359905040A91740493665100004240523161418013D2329C9D0799E5EF36A89D07C1D16F7719

    Best regards,

    Charlie

  • The second example (SMS msg) fails, presumably because the iBasis SIM provided with the devkit does not support SMS. The first example (nRF Cloud) fails at the command AT#XNRFCLOUD=1, with the reply ERROR. Not a particularly helpful diagnostic.

    Could I ask for a short session via Zoom etc., so you can look electronically over my shoulder and explain where I'm going off the rails? I am available for the next hour, then any time after 1330 EDT (1730EDT) today.

Reply
  • The second example (SMS msg) fails, presumably because the iBasis SIM provided with the devkit does not support SMS. The first example (nRF Cloud) fails at the command AT#XNRFCLOUD=1, with the reply ERROR. Not a particularly helpful diagnostic.

    Could I ask for a short session via Zoom etc., so you can look electronically over my shoulder and explain where I'm going off the rails? I am available for the next hour, then any time after 1330 EDT (1730EDT) today.

Children
No Data
Related