stm32_common/eeprom: add _IO prefix to hardware access

This commit is contained in:
francisco 2019-07-04 15:52:25 +02:00
parent f2f7fe1bab
commit 8f1a835a59

View File

@ -94,7 +94,7 @@ size_t eeprom_read(uint32_t pos, uint8_t *data, size_t len)
DEBUG("Reading data from EEPROM at pos %" PRIu32 ": ", pos); DEBUG("Reading data from EEPROM at pos %" PRIu32 ": ", pos);
for (size_t i = 0; i < len; i++) { for (size_t i = 0; i < len; i++) {
_wait_for_pending_operations(); _wait_for_pending_operations();
*p++ = *(uint8_t *)(EEPROM_START_ADDR + pos++); *p++ = *(__IO uint8_t *)(EEPROM_START_ADDR + pos++);
DEBUG("0x%02X ", *p); DEBUG("0x%02X ", *p);
} }
DEBUG("\n"); DEBUG("\n");