cchoi22915 it’s already defined. 🙂
If you open circuitdojo_feather_nrf9160_common.dts
you’ll see all the defaults. You can either use the command menu (CTRL + SHIFT +P) or open it manually zephyr/boards/arm/circuitdojo_feather_nrf9160/circuitdojo_feather_nrf9160_common.dts
Second answer relates to the chosen keyword in your overlay.
The default is:
chosen {
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
zephyr,uart-mcumgr = &uart0;
};
You can change the console and shell to uart1 in your overlay.
chosen {
zephyr,console = &uart1;
zephyr,shell-uart = &uart1;
zephyr,uart-mcumgr = &uart0;
};
I did a quick thing on the chosen keyword this past week: https://www.youtube.com/watch?v=uAG5EVSWGKs