• STM32F4 Stack & Heap using scatter file
    I have the following scatter file, LR_IROM1 0x08000000 0x00100000 { ; load region size_region ;ARM_LIB_HEAP 0x20000000 EMPTY 0x200{} ; Heap starts at 1MB ; and grows upwards ;ARM_LIB_STACK 0x20020000...
  • 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 Declartion using scatter file
    I want to declare heap using scatter file. how can i declare heap. kindly give me its example. Thanks
  • ARM startup file with scatter file heap/stack placement
    Hi, I am using: ARM Compiler/Assembler/Linker on Cortex-M0. Given the following template for startup.s: www.keil.com/.../startup_s_pg.html Stack_Size EQU 0x00000400 AREA STACK, NOINIT...
  • Scatter load
    Hi, I am using STM32F070C in one USB application with command line interface. Settings of the device is stored in flash in last 1k bank (device is 32k): 0x0800 7c00 to 0x800 7fff. I have some issues...