Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Releases: khoih-prog/FlashStorage_SAMD

v1.3.2 to make compatible with old libraries and codes

26 Jan 16:05
3712949
Compare
Choose a tag to compare

Releases v1.3.2

  1. Make compatible with old libraries and codes

v1.3.1 to clean-up by reducing the number of library files

25 Jan 20:44
cb32e93
Compare
Choose a tag to compare

Releases v1.3.1

  1. Clean-up by reducing the number of library files

v1.3.0 to fix `multiple-definitions` linker error, to add support to many more boards, such as SAMD21E1xA, SAMD21G1xA and SAMD21J1xA and to fix bug

25 Jan 07:24
160cbd7
Compare
Choose a tag to compare

Releases v1.3.0

  1. Fix multiple-definitions linker error.
  2. Add support to many more boards, such as SAMD21E1xA, SAMD21G1xA andSAMD21J1xA
  3. Add example multiFileProject to demo for multiple-file project.
  4. Fix bug
  5. Update Packages' Patches

v1.2.1 to update `platform.ini` and `library.json`

11 Oct 06:27
f05f8b8
Compare
Choose a tag to compare

Releases v1.2.1

  1. Update platform.ini and library.json to use original khoih-prog instead of khoih.prog after PIO fix
  2. Update Packages' Patches

v1.2.0 to optimize code and add support to Industruino SAMD21 DG21, SAML21 420MAKER and Sparkfun SAMD21/SAMD51boards

19 Aug 04:00
93e8f69
Compare
Choose a tag to compare

Releases v1.2.0

  1. Optimize code.
  2. Add debug option.
  3. Add support to Industruino DG21 boards using IndustruinoSAMD core
  4. Add support to Industruino 420MAKER boards using IndustruinoSAML core
  5. Add support to Sparkfun SAMD21 and SAMD51 boards using Sparkfun SAMD core

Version v1.1.0 to add supports to `EEPROM.put()` and `EEPROM.get()` for efficiently writing and reading the whole object.

27 Jan 04:41
8c3d200
Compare
Choose a tag to compare

Releases v1.1.0

  1. Add supports to EEPROM.put() and EEPROM.get() for efficiently writing and reading the whole object.
  2. Add _commitASAP flag to permit reduce the number of calls to EEPROM.commit() to extend the flash life.
  3. Add many modified examples from Arduino EEPROM library
  4. Fix bug.

Initial Release v1.0.0 to add support to SAMD51

28 Mar 16:48
e42ad3b
Compare
Choose a tag to compare

Initial Version v1.0.0

  1. Add support to SAMD51 family such as Itsy-Bitsy M4, etc.

Library is based on and modified from:

  1. Cristian Maglie's FlashStorage

The FlashStorage library aims to provide a convenient way to store and retrieve
user's data using the non-volatile flash memory of microcontrollers.

The flash memory, due to his properties, is generally used to store the firmware
code, but it can also be used to store user data.