• Placing C constants at specific addresses
    I need to place a constant at a specific address, does anyone knows ow to do this????
  • 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...
  • HOW TO PUT SET OF FUNCTIONS AT A PARTICULAR ADDRESS
    how do i create a user defined data class with specific functions from different .c files and place the class at a particular address in ram
  • Placing Constant data in Internal flash by specifying explicit address
    Hi Group, I am developing firmware for LPC1756 ARM Cortex-M3 processor, where I want to place my constant data into the internal flash(code memory) by specifying the address explicitly. For example...
  • define a constant to an absolute address
    How to define the following constant to an absolute address at 0x1000? unsigned char code index[] = { 0x3, 0x5, 0x6 } ; //a constant mem in a file Thanks for any help!