Hi!
I am using the lm4f eval board and want to program an array into the eeprom.
For this I use the EEPROMProgramNonBlockin Function with the first value followed by the EEPROMIntEnable and Master Interrupt enable.
The EEPROM is activated by clock handler first and I also call the EEPROMInit() function.
I put my EEPROMIntHandler in the startup_ccs.c at the position of FLASH Control. In the Interrupt Handler I want to clear the interrupt and start the write of the nex value.
Now my problem is, that the interrupt never gets called. The first value is written, but the handler is never reached. The rest of the program runs ok.
I can see that the EEPROM Write with Increment Value in the EEPROM Register is periodically loaded with the first value and the Current Address Offset is incrementing from 0 by 2 to E and restarting. The EEINT stays at 1, but the Interrupt is never entered (breakpoint at entry).
Am I missing something?