• Placing sections at a specific address
    I used the following code to specify the address of variable bar at 0x4000 and the address of function fun at 0x8002000 . int bar __attribute__((section(".ARM.__at_0x4000"))); void fun(void) __attribute__...
  • to fetch start and end address of section (scatter file)
    Hi all, I want to place a library in to a specific section in flash using a scatter file. then i want to do CRC check of the library file at runtime. Can any body help me in this. I need to know...
  • Question about "EMPTY" section in scatter file
    Hi, I am trying to define a 64 byte memory block in RAM to hold some variables that need to be initialised. I would like to have the rest (unused) bytes of the 64 byte block to be "filled" with...
  • SECTIONS and ASSIGN confusion - simple mistake?
    I'm writing a debug/test function, and I want to store it at 0x00E00000. The problem is that all works fine as long as the test function does not call any external functions. This one is ok: smt_1...
  • Static library
    Hi I have a project made with a custom board with STM32F3, and I use ARM Keil and ARM Tools for development of the project. The current memory's layout is a partition for bootloader and other for...