I am attempting to read and write to the internal EEPROm on the TM4C1294 LaunchPad. I am using the eeprom functions ROM_EEPROMProgram and ROM_EEPROMRead. The program command appears to be working, or from what I can tell. The read command hangs my program. Example code is below.
someVariable[0] = 32;
adrs++;
ROM_EEPROMProgram(someVariable,adrs,1);
ROM_EEPROMRead( someVariable, adrs, 8 ); // broke
Can someone tell me why my program hangs?