Releases: krzychb/EspSaveCrash
Releases · krzychb/EspSaveCrash
Release 1.3.0
- Users who are already using EEPROM can now continue in an intuitive way and not have this library close the EEPROM by calling
EEPROM.end()
within the library. Now in the constructor if you setpersistEEPROM
= true then this library will.commit()
instead of.end()
- contribution by @bwjohns4 👍 - Updated related documenation and fixed broken link.
Release 1.2.0
- Reimplement
crashToBuffer()
by removing duplicate code and adding a check for buffer size to prevent the buffer overflow and crash - contribution by @oxan 👍 - Small code updates and spelling error fixes
Release 1.1.0
- Accept offset and size parameters passed into the constructor. Contributed by @jlpdiez.
- The crash log can be stored to char buffer for more convenient use with a web server. WebServerCrashCheck example to show saving crash data to user buffer to check it remotely with web browser using ESP8266WebServer. Contributed by @brainelectronics.
Maintenance Release
- Fixed displaying of incomplete stack trace
- Example sketch - ExtendedCrashTester.ino
- Example sketch - RemoteCrashCheck.ino
Initial Release
- EspSaveCrash library
- Example sketch - SimpleCrash.ino