Closed
Description
Hi, is the EEPROM library supposed to work? I tested it with a blue pill & STM32F102C8T6. When I try to write any EEPROM location and read it back, it fails.
Sample code:
EEPROM.write(0,0xbd); Serial.printf("%02x",EEPROM.read(0));
The read function just returns 0.
I also tried the functions directly from utility/stm32_eprom.c, and they don't work, either.