This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

what is PAD memory area?

Hi all,

I'm writing a program and until now the RO-data size wa around 2000 bytes.. Now, after some changes in the code, I saw the RO-data size is 33758 bytes... in the MAP file the compiler uses around 30000 bytes in the PAD area.. what's this?...

Thanks

Parents
  • Hi,

    Yes, I placed this code:

    static const char VALOR_CALIBRACION __attribute__((at(0x0800FF00))) = 0;

    Need to do the calibration in fabrication process. I think this PAD block is transparet for me, in other words, the compiler will change the size when I placed new code and this PAD block will not affect my code.. right?

    Thanks Westermark

Reply
  • Hi,

    Yes, I placed this code:

    static const char VALOR_CALIBRACION __attribute__((at(0x0800FF00))) = 0;

    Need to do the calibration in fabrication process. I think this PAD block is transparet for me, in other words, the compiler will change the size when I placed new code and this PAD block will not affect my code.. right?

    Thanks Westermark

Children