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

nRF9160 at_client sample default uart port

Hi,

I am testing the at_client sample code in the nRF Connect SDK.

I want to change the default AT host com port to uart1 or uart2.

I tried to modify prj.conf but it will output an error message ("ERROR: AT Host not initialized").

How can I make changes?

Thanks.

My computer platform : window7 64bit

Parents
  • Hi, Hakon :

    Modify prj.conf and add below setting

    CONFIG_UART_2_NRF_UARTE=y
    CONFIG_UART_2=y
    CONFIG_AT_HOST_UART=2
    

    Add nrf9160_pca10090.overlay

    / {
    	chosen {
    		zephyr,at-uart=&uart2;
    	};
    };
    
    &uart2 {
    	current-speed = <115200>;
    	status = "ok";
    	tx-pin = <18>;
    	rx-pin = <17>;
    	rts-pin = <19>;
    	cts-pin = <21>;
    };
    

    These are my modifications.
    Please correct my mistake.

    Thanks.

Reply
  • Hi, Hakon :

    Modify prj.conf and add below setting

    CONFIG_UART_2_NRF_UARTE=y
    CONFIG_UART_2=y
    CONFIG_AT_HOST_UART=2
    

    Add nrf9160_pca10090.overlay

    / {
    	chosen {
    		zephyr,at-uart=&uart2;
    	};
    };
    
    &uart2 {
    	current-speed = <115200>;
    	status = "ok";
    	tx-pin = <18>;
    	rx-pin = <17>;
    	rts-pin = <19>;
    	cts-pin = <21>;
    };
    

    These are my modifications.
    Please correct my mistake.

    Thanks.

Children
Related