• 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...
  • 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...
  • 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...
  • 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...
  • 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...