54b800f31e
Add device tree support for Nitrogen 96board, BLE Nano 2, and nRF52-PCA10040 DK boards. This is minimal support for memory, flash, and UART. For the nRF52832 we select between "nordic,nrf-uarte", "nordic,nrf-uart" support for each board. Change-Id: Ia247b9b710a72416e9ab0de3ca1429bfab8917f8 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
27 lines
442 B
Plaintext
27 lines
442 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf52832.dtsi>
|
|
|
|
/ {
|
|
model = "Seeed Studio Nitrogen 96board";
|
|
compatible = "seeed,nitrogen", "nordic,nrf52832-qfaa",
|
|
"nordic,nrf52832";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
compatible = "nordic,nrf-uart";
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|