We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15663b3 commit 6c09a74Copy full SHA for 6c09a74
src/target/stm32f4.c
@@ -441,6 +441,10 @@ static bool stm32f4_attach(target_s *const target)
441
}
442
443
444
+ /* On STM32F4 SoC, Cortex-M4F allows SRAM access without halting */
445
+ if (!is_f7 && target->part_id != ID_STM32F20X)
446
+ target->target_options |= TOPT_NON_HALTING_MEM_IO;
447
+
448
/* Now we have a base RAM map, rebuild the Flash map */
449
uint8_t split = 0;
450
uint32_t bank_length;
0 commit comments