Refer to the native_sim overlay instead of the native_posix one, as native_posix is going to be deprecated soon. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
16 lines
287 B
Plaintext
16 lines
287 B
Plaintext
/ {
|
|
uart0: uart {
|
|
status = "okay";
|
|
compatible = "zephyr,native-tty-uart";
|
|
current-speed = <115200>;
|
|
serial-port = "/dev/ttyUSB0";
|
|
};
|
|
|
|
uart2: uart2 {
|
|
status = "okay";
|
|
compatible = "zephyr,native-tty-uart";
|
|
current-speed = <115200>;
|
|
serial-port = "/dev/ttyUSB1";
|
|
};
|
|
};
|