Disabling UART shell

Hi! Is there any way to completely (preferably on system build-level) to disable the serial shell on duo256? (GPIO 16/17)

I’m not sure, but maybe here:
build/boards/default/dts/cv181x/cv181x_base.dtsi

You can try replacing

status = “okay”;

with

status = “disabled”;

Or actually likely editing this piece in the same file:

    chosen {
            stdout-path = "serial0";
    };
1 Like