summaryrefslogtreecommitdiff
path: root/app/boards/arm/bluemicro52840_v1/bluemicro52840_v1.dts
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-08-16 22:32:04 -0400
committerGitHub <noreply@github.com>2020-08-16 22:32:04 -0400
commit3f1dfbaad1a867f59c13814a517e03dfce4d4223 (patch)
tree59e01c78a9c156c9693bf370b1e63fc2aa5f33a2 /app/boards/arm/bluemicro52840_v1/bluemicro52840_v1.dts
parent94549b4a07985e9b1a462bb64f67c8ade466e377 (diff)
parent15405f351ac8446bbadd2d46e65f6c90dd7c4c6d (diff)
Merge pull request #91 from Na-Cly/boards/bluemicro52840_v1
Add bluemicro support
Diffstat (limited to 'app/boards/arm/bluemicro52840_v1/bluemicro52840_v1.dts')
-rw-r--r--app/boards/arm/bluemicro52840_v1/bluemicro52840_v1.dts96
1 files changed, 96 insertions, 0 deletions
diff --git a/app/boards/arm/bluemicro52840_v1/bluemicro52840_v1.dts b/app/boards/arm/bluemicro52840_v1/bluemicro52840_v1.dts
new file mode 100644
index 0000000..c56ca18
--- /dev/null
+++ b/app/boards/arm/bluemicro52840_v1/bluemicro52840_v1.dts
@@ -0,0 +1,96 @@
+/*
+ * Copyright (c) 2020 Pete Johanson, Derek Schmell
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
+/dts-v1/;
+#include <nordic/nrf52840_qiaa.dtsi>
+#include "arduino_pro_micro_pins.dtsi"
+
+/ {
+ model = "BlueMicro52840_V1";
+ compatible = "bluemicro52840,v1";
+
+ chosen {
+ zephyr,code-partition = &code_partition;
+ // zephyr,console = &uart0;
+ //zephyr,bt-mon-uart = &uart0;
+ //zephyr,bt-c2h-uart = &uart0;
+ zephyr,sram = &sram0;
+ zephyr,flash = &flash0;
+ };
+
+ leds {
+ compatible = "gpio-leds";
+ blue_led: led_0 {
+ gpios = <&gpio0 42 GPIO_ACTIVE_LOW>;
+ label = "Blue LED";
+ };
+ };
+
+};
+
+&gpio0 {
+ status = "okay";
+};
+
+&gpio1 {
+ status = "okay";
+};
+
+&i2c0 {
+ compatible = "nordic,nrf-twi";
+ sda-pin = <15>;
+ scl-pin = <17>;
+};
+
+&uart0 {
+ compatible = "nordic,nrf-uarte";
+ status = "okay";
+ current-speed = <115200>;
+ tx-pin = <39>;
+ rx-pin = <34>;
+ rts-pin = <33>;
+ cts-pin = <12>;
+};
+
+&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>;
+
+ boot_partition: partition@0 {
+ label = "adafruit_boot";
+ reg = <0x000000000 0x0000C000>;
+ };
+ code_partition: partition@26000 {
+ label = "code_partition";
+ reg = <0x00026000 0x000d2000>;
+ };
+
+ /*
+ * The flash starting at 0x000f8000 and ending at
+ * 0x000fffff is reserved for use by the application.
+ */
+
+ /*
+ * Storage partition will be used by FCB/LittleFS/NVS
+ * if enabled.
+ */
+ storage_partition: partition@f8000 {
+ label = "storage";
+ reg = <0x000f8000 0x00008000>;
+ };
+ };
+};