1/* 2 * Copyright (c) 2017 Linaro Limited 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8#include <nordic/nrf51822_qfaa.dtsi> 9#include "nrf51_blenano-pinctrl.dtsi" 10 11/ { 12 model = "Redbear BLE Nano"; 13 compatible = "redbear,blenano"; 14 15 chosen { 16 zephyr,console = &uart0; 17 zephyr,shell-uart = &uart0; 18 zephyr,bt-mon-uart = &uart0; 19 zephyr,bt-c2h-uart = &uart0; 20 zephyr,sram = &sram0; 21 zephyr,flash = &flash0; 22 }; 23 24 aliases { 25 led0 = &led0; 26 watchdog0 = &wdt0; 27 }; 28 29 leds { 30 compatible = "gpio-leds"; 31 led0: led_0 { 32 gpios = <&gpio0 19 0>; 33 label = "LED"; 34 }; 35 }; 36}; 37 38&gpiote { 39 status = "okay"; 40}; 41 42&gpio0 { 43 status = "okay"; 44}; 45 46&uart0 { 47 current-speed = <115200>; 48 status = "okay"; 49 pinctrl-0 = <&uart0_default>; 50 pinctrl-1 = <&uart0_sleep>; 51 pinctrl-names = "default", "sleep"; 52}; 53