• Place const data in external flash memory - STM32F429
    I am using the STM32F429 microcontroller to control a controller display via the FCM peripheral. Currently this is working since it takes the images saved as bitmap in the internal flash. Due to limited...
  • put const variables into code-segment
    Hi. I want to put a (large) table of constant values into the code-segment, because I'm very low on RAM but have plenty of program-ROM. The C51-manual on page 88 says "Constant variables may also...
  • Placing many arrays of consts at fixed address of Flash
    I read some topics about placing a const to fixed address by linker. The method is to locate all section, isn't it? My problem is to locate 7 arrays of const(predefined): a1[50]..a7[50]. I want to place...
  • Const data location (again)
    Hi, Having read various articles on the location of const data within a bank switched application, it appears that the compiler/linker will, by default, place all const data from a particular module...
  • Multiple const code segment in a single source file
    We have a sequencer which is in a fixed location in ROM (0xf000-0xffff). It is produced by an external process that creates C source code and is compiled and linked into the final ROM. This I have been...