How can I define an array[512] at RAM_D1(@0x24000000) with STM32 VSCode extension?
I am new user of stm32h750, and I try developing it with STM32 vscode extension, it is great!
For sci_dma, I need a buffer at RAM_D1(@0x24000000) , how can I define the array?
I can only define a pointer at the address and it works:
uint8_t *p = (uint8_t *)0x24000000;
But how about a char_buffer[n]?
Please kindly help me, thank you.

