Hi,
I am looking to output the console debug outputs to pins P0.00 and P0.01 and then setup another UART channel between P0.28 and P0.29.
I have changed the overlay file to the following:
`&uart0 {
status = “okay”;
current-speed = <115200>;
tx-pin = <1>;
rx-pin = <0>;
};
&uart1 {
status = “okay”;
current-speed = <115200>;
tx-pin = <29>;
rx-pin = <28>;
};`
In order to test this, I have an FTDI USB to UART between my PC and P0.00 and P0.01. This does not result in any output (looking through putty).
Am I missing a step here or doing it incorrectly?
Thanks,
Chris