30 lines
547 B
Plaintext
30 lines
547 B
Plaintext
/*
|
|
* Copyright (c) 2020 Tobias Svehagen
|
|
* Copyright (c) 2024 Jacob Winther
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "adafruit_feather_nrf52840_common.dtsi"
|
|
#include <nordic/nrf52840_partition.dtsi>
|
|
|
|
/ {
|
|
model = "Adafruit Feather nRF52840 Express";
|
|
compatible = "adafruit,feather-nrf52840";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,shell-uart = &uart0;
|
|
zephyr,uart-mcumgr = &uart0;
|
|
zephyr,bt-mon-uart = &uart0;
|
|
zephyr,bt-c2h-uart = &uart0;
|
|
};
|
|
|
|
leds {
|
|
led0: led_0 {
|
|
gpios = <&gpio1 15 0>;
|
|
};
|
|
};
|
|
};
|