Skip to content

Commit

Permalink
Reflect contributions in credits, add description of new example by b…
Browse files Browse the repository at this point in the history
…rainelectronics and update revision level to 1.1.0
  • Loading branch information
krzychb committed Dec 7, 2019
1 parent cf29dd4 commit c047f6e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The following example Arduino sketches (*.ino) are available with this library:
1. [SimpleCrash](https://github.com/krzychb/EspSaveCrash/blob/master/examples/SimpleCrash/SimpleCrash.ino) - trigger sample exceptions and show them on a serial monitor.
2. [ExtendedCrashTester](https://github.com/krzychb/EspSaveCrash/blob/master/examples/ExtendedCrashTester/ExtendedCrashTester.ino) - extended version of SimpleCrash above. It allows triggering additional sample exceptions.
3. [RemoteCrashCheck](https://github.com/krzychb/EspSaveCrash/blob/master/examples/RemoteCrashCheck/RemoteCrashCheck.ino) - check the list and details of saved exceptions remotely with web browser.
4. [WebServerCrashCheck](https://github.com/krzychb/EspSaveCrash/blob/master/examples/WebServerCrashCheck/WebServerCrashCheck.ino) - save crash data to user buffer to check it remotely with web browser using ESP8266WebServer. Contributed by [brainelectronics](http://www.brainelectronics.de/).

To use examples below, first you need to [install](readme.md#installation) the [EspSaveCrash](https://github.com/krzychb/EspSaveCrash) library on your PC.

Expand Down
1 change: 1 addition & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ SaveCrash KEYWORD1

print KEYWORD2
clear KEYWORD2
crashToBuffer KEYWORD2
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EspSaveCrash",
"version": "1.0.3",
"version": "1.1.0",
"keywords": "crash, exception, restart, software WDT, diagnostics",
"description": "Automatically saves exception details and stack trace to flash in case of ESP8266 crash.",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=EspSaveCrash
version=1.0.2
version=1.1.0
author=Krzysztof Budzynski <krzychb@gazeta.pl>
maintainer=Krzysztof Budzynski <krzychb@gazeta.pl>
sentence=Automatically saves exception details and stack trace to flash in case of ESP8266 crash.
Expand Down
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ krzychb
* Preparation of this library has been inspired by issue [#1152](https://github.com/esp8266/Arduino/issues/1152) in [esp8266 / Arduino](https://github.com/esp8266/Arduino) repository.
* Development was possible thanks to [Ivan Grokhotkov](https://twitter.com/i_grr), who clarified how to register a crash callback and suggested to save crash information on flash.
* Actual implementation of library has been done thanks to [djoele](https://github.com/djoele) who provided first working code and suggested to convert it into general functionality.
* Thanks to contribution by [Juan L. Pérez Díez](https://github.com/jlpdiez) the library accepts offset and size parameters passed into the constructor.
* With kind contribution by [brainelectronics](http://www.brainelectronics.de/) the crash log can be stored to char buffer for more convenient use with a web server.
## License
Expand Down
2 changes: 1 addition & 1 deletion src/EspSaveCrash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Repository: https://github.com/krzychb/EspSaveCrash
File: EspSaveCrash.cpp
Revision: 1.0.2
Revision: 1.1.0
Date: 18-Aug-2016
Author: krzychb at gazeta.pl
Expand Down
2 changes: 1 addition & 1 deletion src/EspSaveCrash.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Repository: https://github.com/krzychb/EspSaveCrash
File: EspSaveCrash.h
Revision: 1.0.2
Revision: 1.1.0
Date: 18-Aug-2016
Author: krzychb at gazeta.pl
Expand Down

0 comments on commit c047f6e

Please # to comment.