1/*
2 * Copyright (c) 2020 Tobias Svehagen
3 * Copyright (c) 2024 Jacob Winther
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8/dts-v1/;
9#include "adafruit_feather_nrf52840_common.dtsi"
10#include <nordic/nrf52840_partition.dtsi>
11
12/ {
13	model = "Adafruit Feather nRF52840 Express";
14	compatible = "adafruit,feather-nrf52840";
15
16	chosen {
17		zephyr,console = &uart0;
18		zephyr,shell-uart = &uart0;
19		zephyr,uart-mcumgr = &uart0;
20		zephyr,bt-mon-uart = &uart0;
21		zephyr,bt-c2h-uart = &uart0;
22	};
23
24	leds {
25		led0: led_0 {
26			gpios = <&gpio1 15 0>;
27		};
28	};
29};
30