Nick Winans
3 years ago
committed by
Pete Johanson
8 changed files with 171 additions and 97 deletions
@ -0,0 +1,100 @@
@@ -0,0 +1,100 @@
|
||||
/* |
||||
* Copyright (c) 2021 The ZMK Contributors |
||||
* |
||||
* SPDX-License-Identifier: MIT |
||||
*/ |
||||
|
||||
#include <nordic/nrf52840_qiaa.dtsi> |
||||
#include "arduino_pro_micro_pins.dtsi" |
||||
|
||||
/ { |
||||
model = "nice!nano"; |
||||
compatible = "nice,nano"; |
||||
|
||||
chosen { |
||||
zephyr,code-partition = &code_partition; |
||||
zephyr,sram = &sram0; |
||||
zephyr,flash = &flash0; |
||||
}; |
||||
|
||||
leds { |
||||
compatible = "gpio-leds"; |
||||
blue_led: led_0 { |
||||
gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>; |
||||
label = "Blue LED"; |
||||
}; |
||||
}; |
||||
}; |
||||
|
||||
&adc { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
&gpiote { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
&gpio0 { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
&gpio1 { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
&i2c0 { |
||||
compatible = "nordic,nrf-twi"; |
||||
sda-pin = <17>; |
||||
scl-pin = <20>; |
||||
}; |
||||
|
||||
&uart0 { |
||||
compatible = "nordic,nrf-uarte"; |
||||
tx-pin = <6>; |
||||
rx-pin = <8>; |
||||
}; |
||||
|
||||
&usbd { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
|
||||
&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>; |
||||
|
||||
sd_partition: partition@0 { |
||||
label = "softdevice"; |
||||
reg = <0x00000000 0x00026000>; |
||||
}; |
||||
code_partition: partition@26000 { |
||||
label = "code_partition"; |
||||
reg = <0x00026000 0x000c6000>; |
||||
}; |
||||
|
||||
/* |
||||
* The flash starting at 0x000ec000 and ending at |
||||
* 0x000f3fff is reserved for use by the application. |
||||
*/ |
||||
|
||||
/* |
||||
* Storage partition will be used by FCB/LittleFS/NVS |
||||
* if enabled. |
||||
*/ |
||||
storage_partition: partition@ec000 { |
||||
label = "storage"; |
||||
reg = <0x000ec000 0x00008000>; |
||||
}; |
||||
|
||||
boot_partition: partition@f4000 { |
||||
label = "adafruit_boot"; |
||||
reg = <0x000f4000 0x0000c000>; |
||||
}; |
||||
}; |
||||
}; |
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
/* |
||||
* Copyright (c) 2021 The ZMK Contributors |
||||
* |
||||
* SPDX-License-Identifier: MIT |
||||
*/ |
||||
|
||||
/dts-v1/; |
||||
#include "nice_nano.dtsi" |
||||
|
||||
/ { |
||||
ext-power { |
||||
compatible = "zmk,ext-power-generic"; |
||||
label = "EXT_POWER"; |
||||
control-gpios = <&gpio0 13 GPIO_ACTIVE_HIGH>; |
||||
init-delay-ms = <10>; |
||||
}; |
||||
|
||||
vbatt { |
||||
compatible = "zmk,battery-voltage-divider"; |
||||
label = "BATTERY"; |
||||
io-channels = <&adc (0x0D - 1)>; |
||||
// Multiply ADC result by 5 |
||||
full-ohms = <5>; |
||||
output-ohms = <1>; |
||||
}; |
||||
}; |
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
identifier: nice_nano_v2 |
||||
name: nice!nano v2 |
||||
type: mcu |
||||
arch: arm |
||||
toolchain: |
||||
- zephyr |
||||
- gnuarmemb |
||||
- xtools |
||||
supported: |
||||
- adc |
||||
- usb_device |
||||
- ble |
||||
- ieee802154 |
||||
- pwm |
||||
- watchdog |
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
# SPDX-License-Identifier: MIT |
||||
|
||||
CONFIG_SOC_SERIES_NRF52X=y |
||||
CONFIG_SOC_NRF52840_QIAA=y |
||||
CONFIG_BOARD_NICE_NANO_V2=y |
||||
|
||||
# Enable MPU |
||||
CONFIG_ARM_MPU=y |
||||
|
||||
# enable GPIO |
||||
CONFIG_GPIO=y |
||||
|
||||
CONFIG_USE_DT_CODE_PARTITION=y |
||||
|
||||
CONFIG_MPU_ALLOW_FLASH_WRITE=y |
||||
CONFIG_NVS=y |
||||
CONFIG_SETTINGS_NVS=y |
||||
CONFIG_FLASH=y |
||||
CONFIG_FLASH_PAGE_LAYOUT=y |
||||
CONFIG_FLASH_MAP=y |
Loading…
Reference in new issue