mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-10 00:41:57 +00:00
+ The VBLUno52 board nRF52832 ARM Cortex-M4F processor Bluetooth Low Energy 5.0 DAPLink interface UNO pinout 4 power + 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>
27 lines
442 B
Plaintext
27 lines
442 B
Plaintext
/*
|
|
* Copyright (c) 2017 VNG IoT Lab Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf52832.dtsi>
|
|
|
|
/ {
|
|
model = "VNG VBLUno52 BLE 5.0 board";
|
|
compatible = "vng,vbluno52", "nordic,nrf52832-qfaa",
|
|
"nordic,nrf52832";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "ok";
|
|
compatible = "nordic,nrf-uart";
|
|
current-speed = <115200>;
|
|
};
|