• Heap region gets removed when scatter-loading
    I'm playing around with scatter-loading in Keil 5.25 with armcc compiler. Now I have a dummy project that allocates stack and heap in 'default' startup assembly file: Stack_Size EQU 0x00000400 ...
  • Heap region gets removed when scatter-loading
    I'm playing around with scatter-loading in Keil 5.25 with armcc compiler. Now I have a dummy project that allocates stack and heap in 'default' startup assembly file: Stack_Size EQU 0x00000400 ...
  • Put the Stack & Heap into a memory region ?
    Hi On projects that have different data memory regions - how do you force the stack and heap into a specific region. I am using the STM32F4xxx and there are two (default)memory regions IRAM1 and...
  • Put the Stack & Heap into a memory region ?
    Hi On projects that have different data memory regions - how do you force the stack and heap into a specific region. I am using the STM32F4xxx and there are two (default)memory regions IRAM1 and...
  • heap
    Simple question probably.. I have define my heap in the startup.s Heap_Size EQU 0x00001032 In a function I use: void SST25_EditEXTStr(...) { unsigned char *buffer; buffer = malloc(0x1000...