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.

TM4C1294 LaunchPad EEPROM Read Problems

Expert 1070 points


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?