1.2 KiB
1.2 KiB
EEPROM EMULATION Library for STM32
Please Do not Forget to get STAR, DONATE and support me on social networks. Thank you. 💖
- Author: Nima Askari
- Github: https://www.github.com/NimaLTD
- Youtube: https://www.youtube.com/@nimaltd
- LinkedIn: https://www.linkedin.com/in/nimaltd
- Instagram: https://instagram.com/github.NimaLTD
- Please Test Any MCU you have and tell me the result.
- Install Library from https://github.com/nimaltd/STM32-PACK/raw/main/EE/NimaLTD.I-CUBE-EE.pdsc
- Add and enable it.
- It does not need to any configuration. This Library Select the latest page/sector of the MCU.
- Generate Code.
- Set a buffer for Storing the Data ( array, struct, ...)
- Call EE_Init()
Watch the Video:
Coming Soon
The old Version: https://github.com/nimaltd/EE/archive/refs/tags/2.0.6.zip
''' #include "ee.h" typedef struct { uint32_t val1; uint32_t val2; uint32_t val3; uint32_t val4; uint32_t val5; uint32_t val6; uint32_t val7; uint32_t val8;
} Stotrage_t;
Stotrage_t ee;
. .
int main(void) { . . EE_Init(&ee, sizeof(Stotrage_t)); EE_Read();
while (1) {
} }
'''