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

how to put M33 MCU in nRF9160 sleep mode(Imcuoffo)

Hi,

Are there any sample code to put M33 MCU in nRF9160 SOC in sleep mode (Imcuoffo).

With regards,

Praveen Palaparthi

Parents Reply Children
  • Hi Heidi,

    Thank you for pointing me to serial LTE modem sample code,

    In the SLM example code, where does the macro CONFIG_SLM_CONNECT_UART_0  is defined.In the documents mentioned that this macro is default enabled. Could you please point me to the file where it is defined.There are few other macros too which like CONFIG_SLM_AT_HOST_TERMINATION,

     

    Thank you very much in advance.

    With regards,

    Praveen P

  • Hi!

    In the Kconfig file in the SLM folder, see an excerpt below. The other macro you mentioned is also defined there. 

    choice
    	prompt "UART for Interconnect"
    	default SLM_CONNECT_UART_0
    	help
    		Sets the UART to use for interconnect
    		-  UART 0
    		-  UART 1
    		-  UART 2
    	config SLM_CONNECT_UART_0
    		bool "UART 0"
    	config SLM_CONNECT_UART_1
    		bool "UART 1"
    	config SLM_CONNECT_UART_2
    		bool "UART 2"
    endchoice

Related