Hi all,
I am trying to avoid closing and opening my serial port every time I want to flash the board. My goal is to have another UART output going to an FTDI breakout board and then into another USB port on my computer.
In the schematic of the nRF9160, it looks like there is another UART available on pins 23 and 24.
I have changed the overlay to include these two pins. Is this correct?
`/ {
aliases {
bootloader-led0 = &blue_led;
};
};
// Full speed ahead
&uart0 {
status = “okay”;
current-speed = <1000000>;
tx-pin = <6>;
rx-pin = <5>;
};
&uart1 {
status = “okay”;
current-speed = <115200>;
tx-pin = <24>;
rx-pin = <23>;
};
`
How would I redirect the printk outputs to this uart instead of the Silicon Labs USB to UART on the board?