Skip to content

Commit 4b1f9ba

Browse files
ttmutkartben
authored andcommitted
boards: adi: Correct flash node assignment for MAX32655 boards
Fixes a regression introduced in commit ef6aad9 where the flash node was incorrectly set to code_partition, causing FLASH_BASE_ADDRESS to default to 0x0 and making the device unprogrammable. Signed-off-by: Tahsin Mutlugun <[email protected]>
1 parent 0d86ebb commit 4b1f9ba

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

boards/adi/max32655evkit/max32655evkit_max32655_m4.dts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
zephyr,console = &uart0;
2020
zephyr,shell-uart = &uart0;
2121
zephyr,sram = &sram2;
22-
zephyr,flash = &code_partition;
22+
zephyr,flash = &flash0;
23+
zephyr,code-partition = &code_partition;
2324
};
2425

2526
leds {

boards/adi/max32655fthr/max32655fthr_max32655_m4.dts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
zephyr,console = &uart0;
2020
zephyr,shell-uart = &uart0;
2121
zephyr,sram = &sram2;
22-
zephyr,flash = &code_partition;
22+
zephyr,flash = &flash0;
23+
zephyr,code-partition = &code_partition;
2324
};
2425

2526
leds {

0 commit comments

Comments
 (0)