/* * Copyright (c) 2020 Pete Johanson, Derek Schmell * * SPDX-License-Identifier: MIT */ /dts-v1/; #include #include "arduino_pro_micro_pins.dtsi" / { model = "BlueMicro833_V1"; compatible = "bluemicro833,v1"; chosen { zephyr,code-partition = &code_partition; zephyr,sram = &sram0; zephyr,flash = &flash0; }; leds { compatible = "gpio-leds"; blue_led: led_0 { gpios = <&gpio0 25 GPIO_ACTIVE_HIGH>; label = "Blue LED"; }; red_led: led_1 { gpios = <&gpio1 4 GPIO_ACTIVE_HIGH>; label = "Red LED"; }; }; ext-power { compatible = "zmk,ext-power-generic"; label = "EXT_POWER"; init-delay-ms = <20>; control-gpios = <&gpio0 12 GPIO_ACTIVE_HIGH>; }; vbatt { compatible = "zmk,battery-nrf-vddh"; label = "BATTERY"; }; }; &adc { status = "okay"; }; &gpiote { status = "okay"; }; &gpio0 { status = "okay"; }; &gpio1 { status = "okay"; }; &i2c0 { compatible = "nordic,nrf-twi"; sda-pin = <15>; scl-pin = <17>; }; &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 0x00046000>; }; /* * The flash starting at 0x0006c000 and ending at * 0x00073fff is reserved for use by the application. */ /* * Storage partition will be used by FCB/LittleFS/NVS * if enabled. */ storage_partition: partition@6c000 { label = "storage"; reg = <0x0006c000 0x00008000>; }; boot_partition: partition@74000 { label = "adafruit_boot"; reg = <0x00074000 0x0000c000>; }; }; };