how to set mode of Serial LTE Modem

Im currently using a nRF9160 with SLM application as a modem on a nRF52840.

How can I configure the modem for NB-IOT or LTE by using the nrf52840?

My project is working, I just need a way to set it to NB-IOT only for example.

I found CONFIG_LTE_NETWORK_MODE, but this gives some errors.

kind regards,

Jonas

Parents Reply
  • jonas.woerner said:
    How would I send AT commands? Is there any special function for this?

    Just send AT commands as you send a string through UART, for example 'AT+CFUN=1', it should be terminated with CRLF every time in order to let modem know the AT command is done. Try to learn how to send print string through nRF52 UART port first.

    jonas.woerner said:
    the uart is already used by the network interface to communicate with the modem I guess?

    I am not sure what you mean here. nRF52 and nRF91 has to communicate though UART connection, as you can see from the samples I refereed before.

Children
Related