mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 15:45:23 +00:00
Removed Console dependencies from shell uart backend. Generated define: CONFIG_UART_SHELL_ON_DEV_NAME for each board. Fixes #10191 Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
25 lines
311 B
Plaintext
25 lines
311 B
Plaintext
/dts-v1/;
|
|
|
|
#include <nios2f.dtsi>
|
|
|
|
/ {
|
|
model = "altera_max10";
|
|
compatible = "altera,nios2f";
|
|
|
|
aliases {
|
|
uart-0 = &uart0;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
zephyr,console = &uart0;
|
|
zephyr,shell-uart = &uart0;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|