mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 14:45:48 +00:00
+ VBLUno51 board nRF51822 Bluetooth Low Energy DAPLink interface UNO pinout 4 power + Wiki: https://vngiotlab.github.io/vbluno/ + The following samples were tested: hello_world basic/button basic/blinky bluetooth/peripheral_hr bluetooth/beacon Signed-off-by: Nam Do <robotden@gmail.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
26 lines
405 B
Plaintext
26 lines
405 B
Plaintext
/*
|
|
* Copyright (c) 2017 VNG IoT Lab Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf51822.dtsi>
|
|
|
|
/ {
|
|
model = "VNG VBLUno51 BLE board";
|
|
compatible = "vng,vbluno51", "nordic,nrf51822-qfac",
|
|
"nordic,nrf51822";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|