Hi,
I'm using a custom board with nrf52840 and nrf9160. I tried to build at_client sample (vscode) with nrf9160dk_nrf9160_ns.overlay -file added (tx and rx pins modified according to my board):
&uart0 {
status = "okay";
tx-pin = <5>;
rx-pin = <6>;
rts-pin = <0xFFFFFFFF>;
cts-pin = <0xFFFFFFFF>;
};
Build fails with following error: "ninja: build stopped: subcommand failed.
FATAL ERROR: command exited with status 1: '..\ncs\toolchains\v2.0.2\opt\bin\cmake.EXE' --build '..\ncs\v2.0.2\nrf\samples\nrf9160\at_client\build'
Sample builds just fine without the overlay file. What am I doing wrong here?