29fbd1ede8
Devicetree label property has been deprecated, so remove its usage. Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
39 lines
636 B
Plaintext
39 lines
636 B
Plaintext
/*
|
|
* Copyright (c) 2021 Nordic Semiconductor ASA
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf52840_qiaa.dtsi>
|
|
|
|
/ {
|
|
model = "Custom Plank Board";
|
|
compatible = "vendor,custom-plank";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
|
|
examplesensor0: examplesensor_0 {
|
|
compatible = "zephyr,examplesensor";
|
|
input-gpios = <&gpio0 11 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
|
|
};
|
|
};
|
|
|
|
&gpio0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart0 {
|
|
compatible = "nordic,nrf-uarte";
|
|
status = "okay";
|
|
|
|
current-speed = <115200>;
|
|
tx-pin = <6>;
|
|
rx-pin = <8>;
|
|
rts-pin = <5>;
|
|
cts-pin = <7>;
|
|
};
|