You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
*[Can I use a single object to store more stuff?](#can-i-use-a-single-object-to-store-more-stuff)
@@ -58,7 +63,7 @@
58
63
59
64
### Features
60
65
61
-
The FlashStorage_STM32 library, inspired from[Cristian Maglie's FlashStorage](https://github.com/cmaglie/FlashStorage), provides a convenient way to store and retrieve user's data using emulated-EEPROM, from the non-volatile flash memory of STM32F/L/H/G/WB/MP1.
66
+
The FlashStorage_STM32 library, inspired by[Cristian Maglie's FlashStorage](https://github.com/cmaglie/FlashStorage), provides a convenient way to store and retrieve user's data using emulated-EEPROM, from the non-volatile flash memory of STM32F/L/H/G/WB/MP1.
62
67
63
68
The flash memory, generally used to store the firmware code, can also be used to store / retrieve more user's data and faster than from EEPROM. Thanks to the **buffered data writing and reading**, the flash access time is greatly reduced to **increase the life of the flash**.
64
69
@@ -86,6 +91,10 @@ The flash memory, generally used to store the firmware code, can also be used to
86
91
87
92
## Changelog
88
93
94
+
### Releases v1.0.1
95
+
96
+
1. Fix compiler warnings.
97
+
89
98
### Releases v1.0.0
90
99
91
100
1. Initial release to support STM32F/L/H/G/WB/MP1 board with / without integrated EEPROM
@@ -97,7 +106,7 @@ The flash memory, generally used to store the firmware code, can also be used to
97
106
## Prerequisites
98
107
99
108
1.[`Arduino IDE 1.8.13+` for Arduino](https://www.arduino.cc/en/Main/Software)
100
-
2.[`Arduino Core for STM32 1.9.0+`](https://github.com/stm32duino/Arduino_Core_STM32) for STM32 (Use Arduino Board Manager)
109
+
2.[`Arduino Core for STM32 v1.9.0+`](https://github.com/stm32duino/Arduino_Core_STM32) for STM32 boards. [](https://github.com/stm32duino/Arduino_Core_STM32/releases/latest)
101
110
102
111
---
103
112
@@ -170,6 +179,28 @@ The API is very similar to the well known Arduino EEPROM.h API but with 4 additi
0 commit comments