This commit is contained in:
kemonine 2022-05-08 14:38:28 -04:00
parent 552713b77d
commit a8be66593e
2 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1 @@
CONFIG_USE_DT_CODE_PARTITION=y

View File

@ -0,0 +1,65 @@
/*
* Copyright (c) 2021 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
/ {
model = "stm32f401 blackpill board";
compatible = "st,stm32f401_blackpill", "st,stm32f401";
chosen {
zephyr,code-partition = &code_partition;
zephyr,console = &usart2;
zephyr,sram = &sram0;
zephyr,flash = &flash0;
};
leds {
compatible = "gpio-leds";
blue_led_1: led_1 {
gpios = <&gpioc 13 GPIO_ACTIVE_HIGH>;
label = "User LED";
};
};
aliases {
led0 = &blue_led_1;
};
};
&rtc {
status = "okay";
};
&usbotg_fs {
status = "okay";
};
&usart2 {
current-speed = <11500>;
status = "okay";
};
&flash0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
boot_partition: partition@0 {
label = "tinyuf2_boot";
reg = <0x00000000 0x00004000>;
};
storage_partition: partition@4000 {
label = "storage";
reg = <0x00004000 0x0000b000>;
};
code_partition: partition@10000 {
label = "code_partition";
reg = <0x00010000 0x00030000>;
};
};
};