Question
Malloc in CCM
Posted on September 19, 2017 at 10:20
Hi,
I'm using threadX on STM32F415, and I need to create some process in SRAM and another one in CCM (depending of DMA usage)
In SRAM I create the thread like that :
void* p;
p=malloc (1024);
create_thread (... , p, 1024, ...);
how is it possible to do that in CCM ?
BR
Ludo
#ccm #threadx #malloc #sram-ccm