Associate III
May 28, 2025
Question
STM32H7 with DTCM of 192K getting elf load problem with debugger
- May 28, 2025
- 2 replies
- 498 views
I'm using the NUCLEO-H7S3L8 and have it setup 192K of DTCM memory. However, when I start to allocate DTCM memory above 64K the .elf file fails to load in the debugger. If I stay below 64K not a problem.

volatile uint8_t __attribute__((section (".dtcm_data"))) __attribute__((aligned(32))) gShadowPQ_WFB[65536] = {1, 2, 3, 4, 5, 6, 7, 8};
volatile uint8_t __attribute__((section (".dtcm_data"))) __attribute__((aligned(32))) gShadowS1_WFB[8192]; //<-- gives problems with loading of STS_Bias.elf
