Query about disabling NB-IoT on nRF9160

I'm developing a solution using the nRF9160 and would like to confirm the correct method to completely disable NB-IoT mode so the device operates exclusively in LTE-M.

  • Hardware: nRF9160 DK/SiP

  • SDK: nRF Connect SDK 2.6.0

  • Modem Firmware: mfw_nrf9160_1.3.7

  • Current Configuration:

    CONFIG_NETWORKING=y
    CONFIG_LTE_NETWORK_MODE_LTE_M=y
    CONFIG_NET_SOCKETS_OFFLOAD=y
    CONFIG_NET_SOCKETS=y
    CONFIG_NET_SOCKETS_POSIX_NAMES=y
    CONFIG_NET_IPV4=y
    CONFIG_NET_TCP=y
    CONFIG_NET_NATIVE=y
    CONFIG_NET_CONNECTION_MANAGER=y
    
    
    CONFIG_PDN=y
    #CONFIG_PDN_SYS_INIT=y
    CONFIG_PDN_DEFAULTS_OVERRIDE=y
    CONFIG_PDN_DEFAULT_APN="iot.datatem.com.br"
    CONFIG_PDN_INIT_PRIORITY=89
    
    

Related