2020-06-12 14:36:54 +10:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Pete Johanson
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
#include <nordic/nrf52840_qiaa.dtsi>
|
|
|
|
#include "arduino_pro_micro_pins.dtsi"
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "nice!nano";
|
2020-06-13 05:03:54 +10:00
|
|
|
compatible = "nice,nano";
|
2020-06-12 14:36:54 +10:00
|
|
|
|
|
|
|
chosen {
|
|
|
|
zephyr,code-partition = &code_partition;
|
|
|
|
zephyr,sram = &sram0;
|
|
|
|
zephyr,flash = &flash0;
|
|
|
|
};
|
|
|
|
|
|
|
|
leds {
|
|
|
|
compatible = "gpio-leds";
|
|
|
|
blue_led: led_0 {
|
2020-08-19 14:28:06 +10:00
|
|
|
gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>;
|
2020-06-12 14:36:54 +10:00
|
|
|
label = "Blue LED";
|
|
|
|
};
|
|
|
|
};
|
2020-10-23 16:57:32 +11:00
|
|
|
|
|
|
|
ext-power {
|
2020-10-06 18:52:21 +11:00
|
|
|
compatible = "zmk,ext-power-generic";
|
|
|
|
label = "EXT_POWER";
|
|
|
|
control-gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
|
|
|
|
};
|
2020-06-12 14:36:54 +10:00
|
|
|
|
2020-09-20 10:14:59 +10:00
|
|
|
vbatt {
|
|
|
|
compatible = "zmk,battery-voltage-divider";
|
2020-10-28 07:08:18 +11:00
|
|
|
label = "BATTERY";
|
2020-09-20 10:14:59 +10:00
|
|
|
io-channels = <&adc 2>;
|
|
|
|
output-ohms = <2000000>;
|
|
|
|
full-ohms = <(2000000 + 806000)>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&adc {
|
|
|
|
status = "okay";
|
2020-06-12 14:36:54 +10:00
|
|
|
};
|
|
|
|
|
2020-08-06 23:30:31 +10:00
|
|
|
&gpiote {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
2020-06-12 14:36:54 +10:00
|
|
|
&gpio0 {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&gpio1 {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&i2c0 {
|
|
|
|
compatible = "nordic,nrf-twi";
|
|
|
|
sda-pin = <17>;
|
|
|
|
scl-pin = <20>;
|
|
|
|
};
|
|
|
|
|
2020-07-08 00:49:51 +10:00
|
|
|
&uart0 {
|
|
|
|
compatible = "nordic,nrf-uarte";
|
|
|
|
status = "okay";
|
|
|
|
current-speed = <115200>;
|
2020-11-09 08:05:13 +11:00
|
|
|
tx-pin = <19>;
|
|
|
|
rx-pin = <21>;
|
|
|
|
rts-pin = <23>;
|
|
|
|
cts-pin = <25>;
|
2020-07-08 00:49:51 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
&usbd {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-06-12 14:36:54 +10:00
|
|
|
&flash0 {
|
|
|
|
/*
|
|
|
|
* For more information, see:
|
|
|
|
* http://docs.zephyrproject.org/latest/devices/dts/flash_partitions.html
|
|
|
|
*/
|
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
2020-11-03 05:26:40 +11:00
|
|
|
sd_partition: partition@0 {
|
|
|
|
label = "softdevice";
|
|
|
|
reg = <0x00000000 0x00026000>;
|
2020-06-12 14:36:54 +10:00
|
|
|
};
|
|
|
|
code_partition: partition@26000 {
|
|
|
|
label = "code_partition";
|
2020-11-03 05:26:40 +11:00
|
|
|
reg = <0x00026000 0x000c6000>;
|
2020-06-12 14:36:54 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2020-11-03 05:26:40 +11:00
|
|
|
* The flash starting at 0x000ec000 and ending at
|
|
|
|
* 0x000f3fff is reserved for use by the application.
|
2020-06-12 14:36:54 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Storage partition will be used by FCB/LittleFS/NVS
|
|
|
|
* if enabled.
|
|
|
|
*/
|
2020-11-03 05:26:40 +11:00
|
|
|
storage_partition: partition@ec000 {
|
2020-06-12 14:36:54 +10:00
|
|
|
label = "storage";
|
2020-11-03 05:26:40 +11:00
|
|
|
reg = <0x000ec000 0x00008000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
boot_partition: partition@f4000 {
|
|
|
|
label = "adafruit_boot";
|
|
|
|
reg = <0x000f4000 0x0000c000>;
|
2020-06-12 14:36:54 +10:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|