User Activity

Posted on September 19, 2017 at 10:20Hi,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, 1...
Posted on September 15, 2017 at 17:52Hi,I try to move some array in CCM on stm32f415.I modify the ld script with  CCM_SRAM   (rwx) : ORIGIN = 0x10000000, LENGTH = 64K .ccmram : { . = ALIGN(4); _sccmram = .; /* create a global symbol at ccmram start ...
Posted on September 12, 2017 at 16:52Hi,I'm using STM32F415 with treadX OS and NetxduoWhen I want to allocate some data, it crash when I'm over 64 KbI have try to configure OPENOCD with this configuration but no changes:configure -work-area-phys 0x2...