Now that we can utilize label in the device tree we can convert to getting the device name for the NRF UART out of the device tree instead of from Kconfig. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
32 lines
477 B
Text
32 lines
477 B
Text
#include <arm/armv7-m.dtsi>
|
|
#include <nordic/mem.h>
|
|
|
|
/ {
|
|
cpus {
|
|
cpu@0 {
|
|
compatible = "arm,cortex-m4f";
|
|
};
|
|
};
|
|
|
|
flash0: flash {
|
|
reg = <0x00000000 DT_FLASH_SIZE>;
|
|
};
|
|
|
|
sram0: memory {
|
|
reg = <0x20000000 DT_SRAM_SIZE>;
|
|
};
|
|
|
|
soc {
|
|
uart0: uart@40002000 {
|
|
compatible = "nordic,nrf-uarte", "nordic,nrf-uart";
|
|
reg = <0x40002000 0x1000>;
|
|
interrupts = <2 1>;
|
|
status = "disabled";
|
|
label = "UART_0";
|
|
};
|
|
};
|
|
};
|
|
|
|
&nvic {
|
|
arm,num-irq-priority-bits = <3>;
|
|
};
|