50 lines
661 B
Plaintext
50 lines
661 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf51822_qfaa.dtsi>
|
|
|
|
/ {
|
|
model = "Redbear BLE Nano";
|
|
compatible = "redbear,blenano", "nordic,nrf51822-qfaa",
|
|
"nordic,nrf51822";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
|
|
aliases {
|
|
led0 = &led0;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
led0: led_0 {
|
|
gpios = <&gpio0 19 0>;
|
|
label = "LED";
|
|
};
|
|
};
|
|
};
|
|
|
|
&gpiote {
|
|
status ="ok";
|
|
};
|
|
|
|
&gpio0 {
|
|
status ="ok";
|
|
};
|
|
|
|
&uart0 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
tx-pin = <9>;
|
|
rx-pin = <11>;
|
|
rts-pin = <8>;
|
|
cts-pin = <10>;
|
|
};
|