2024-08-18 10:59 PM
Hi,
For my project, I am using an M24M01E-F I2C EEPROM. In this application need to store sensors offset values (float data type) in EEPROM. whether it can be able to write/ read float value.
Regards,
Rishvana M
Solved! Go to Solution.
2024-08-18 11:37 PM
You can store bytes in any EEPROM, whether single bytes or bytes in groups. In STM32, FLOAT values consist of four bytes (32bit), so you can also store FLOAT on the EEPROM.
Hope that answers your question?
Regards
/Peter
2024-08-18 11:37 PM
You can store bytes in any EEPROM, whether single bytes or bytes in groups. In STM32, FLOAT values consist of four bytes (32bit), so you can also store FLOAT on the EEPROM.
Hope that answers your question?
Regards
/Peter
2024-08-18 11:41 PM
Thank you @Peter BENSCH