This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C123GH6PM: TM4C123GH6PM, what is the eeprom limit

Part Number: TM4C123GH6PM

Hello,

I use the eeprom on my tm4c123gh6pm to store initial and setup variables using:

void write_eeprom_float(uint32_t addr, float data) {
    pui32Data[0] = ((union conv32){.f32 = data}).u32;
    EEPROMProgram(pui32Data, addr, sizeof(pui32Data));
}

What is the address limit on that? I searched for previous posts and found out it is 0x7FC. But on documentation it says 128 byte, 2Kbit limit. Which one is correct?

Best Regards,

Can