EEPROM emulation for stm32.
Go to file
Nima Askari (نیما عسکری) 1420e455ac
Update README.md
2024-03-25 20:44:37 +01:00
.github Update FUNDING.yml 2023-05-24 15:14:02 +02:00
ee.c V3.0.0 2024-03-25 20:36:03 +01:00
ee.h V3.0.0 2024-03-25 20:36:03 +01:00
LICENSE Initial commit 2017-04-11 20:13:25 +04:30
README.md Update README.md 2024-03-25 20:44:37 +01:00

EEPROM EMULATION Library for STM32


Please Do not Forget to get STAR, DONATE and support me on social networks. Thank you. 💖



  • Please Test Any MCU you have and tell me the result.


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)
  {

  }
}