From 516a3e27f5a596233e69a49ab5d08b7ff4162445 Mon Sep 17 00:00:00 2001 From: RainerWieland Date: Sun, 4 Aug 2024 07:30:04 +0200 Subject: [PATCH 1/2] README.md aktualisiert --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbab8d4..563a33d 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ This library facilitates EEPROM emulation on microcontrollers by selecting the l - - [X] STM32WL - - [ ] STM32WBA --- -* Install Library from https://gitea.iotxs.de/RainerWieland/EEE4STM32/raw/branch/master/STM32-PACK/RWD-EEE4STM32.pdsc +* Install Library from here * Add and enable it. * It does not need to any configuration. This Library Select the latest page/sector of the MCU. * Generate Code. From bcdb04e7c3204eaf5e88c84b62452e972a01eb5e Mon Sep 17 00:00:00 2001 From: RainerWieland Date: Sun, 4 Aug 2024 07:32:26 +0200 Subject: [PATCH 2/2] README.md aktualisiert --- README.md | 51 ++------------------------------------------------- 1 file changed, 2 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index 563a33d..ff9efa6 100644 --- a/README.md +++ b/README.md @@ -47,56 +47,9 @@ This library facilitates EEPROM emulation on microcontrollers by selecting the l * 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() +* Call the Functions and be happy() --- -# Watch the Video: - -
- Video -
- ---- -The old Version: https://github.com/nimaltd/ee/archive/refs/tags/V2.0.6.zip +# No Video present: ``` -#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(); - ee.val1 = 1; - ee.val2 = 2; - ee.val3 = 3; - ee.val4 = 4; - ee.val5 = 5; - ee.val6 = 6; - ee.val7 = 7; - ee.val8 = 8; - EE_Write(); - while (1) - { - - } -} -```