EEPROM emulation on STM32H7
This issue was already mentioned here except now it is on different line. I think it is still there.
In EEPROM emulation in the \STM32Cube\Repository\STM32Cube_FW_H7_V1.9.0\Projects\STM32H743I-EVAL\Applications\EEPROM\EEPROM_Emulation\Src\eeprom.c file on line 394 in function EE_ReadVariable(), there is
Address = Address - 32;but there should be
Address = Address - 64;Bug is that data can be interpreted as address and we end up reading incorrect data. The same issue is in examples for Nucleo-H743ZI and Nucleo-H7A3ZI (for the last one it should be 32 instead of 16).
Karel
