Question
No interrupts occur during EEPROM write
Posted on November 03, 2015 at 17:25
Using a logic analyzer, I am seeing that interrupts are not occurring during a write to EEPROM.Here is a basic snippet of how I write a single byte of data to an address:
DATA_EEPROM_Unlock();
DATA_EEPROM_ProgramByte(address, data);
DATA_EEPROM_Lock();
Is this expected/known behavior for STM32L152, or is there something I am forgetting to configure to allow interrupts to occur during EEPROM writes?
#stm32-interrupt-isr-eeprom-write