Skip to content

Commit c8a11ae

Browse files
Make Giga application start addr be where bootloader expects it. This wastes 256k of flash but oh well...
1 parent 10bd41b commit c8a11ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

targets/targets.json5

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3675,19 +3675,19 @@ mode is recommended for target MCUs with small amounts of flash and RAM.",
36753675
// Leave room for the Arduino bootloader, using the next 1M of space
36763676
"memory_bank_config": {
36773677
"IROM1": {
3678-
"start": 0x08020000,
3678+
"start": 0x08040000,
36793679
"size": 0x100000
36803680
},
36813681
}
36823682
},
36833683
"ARDUINO_GIGA_CM4": {
36843684
inherits: ["MCU_STM32H747xI_CM4", "ARDUINO_GIGA"],
36853685

3686-
// Leave room for the Arduino bootloader and the CM7 application, using the next 896k of space
3686+
// Leave room for the Arduino bootloader and the CM7 application, using the next 768k of space
36873687
"memory_bank_config": {
36883688
"IROM1": {
3689-
"start": 0x08120000,
3690-
"size": 0xE0000
3689+
"start": 0x08140000,
3690+
"size": 0xC0000
36913691
},
36923692
}
36933693
},

0 commit comments

Comments
 (0)