• 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...
  • Place constant at fixed code memory address
    Hi, I'm confused about the existings threads regarding this topic, so please excuse this new thread. I'd like to put some calibration data into my (OTP) memory of C164-CA. The software would have...
  • Place constant at fixed code memory address
    Hi, I'm confused about the existings threads regarding this topic, so please excuse this new thread. I'd like to put some calibration data into my (OTP) memory of C164-CA. The software would have...
  • const placed in DATA segment
    Hi All, when I write: const char mysting[] ={"my string"}; data are placed to DATA segment, not code sement. I know if it would be written like this: code char mysting[] ={"my string"}; data...