-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathWebServerCrashCheck.ino
213 lines (179 loc) · 6.16 KB
/
WebServerCrashCheck.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
Example application to show how to save crash information
to ESP8266's flash using EspSaveCrash library
Please check repository below for details
Repository: https://github.com/krzychb/EspSaveCrash
File: WebServerCrashCheck.ino
Revision: 1.0.0
Date: 30-September-2019
Author: brainelectronics at brainelectronics.com
Based on code written by: krzychb at gazeta.pl
Copyright (c) 2019 Jonas Scharpf. All rights reserved.
This application is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This application is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "EspSaveCrash.h"
#include <ESP8266WiFi.h>
#include <ESP8266WiFiMulti.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
// WiFi ssid and password defined in wifiConfig.h
// file is tracked with gitignore
#include "wifiConfig.h"
EspSaveCrash SaveCrash;
ESP8266WebServer server(80);
ESP8266WiFiMulti WiFiMulti;
// the buffer to put the Crash log to
char *_debugOutputBuffer;
// flag for setting up the server with WiFiMulti.addAP
uint8_t performOnce = 0;
void setup(void)
{
// 2048 should be able to carry most of the debug stuff
_debugOutputBuffer = (char *) calloc(2048, sizeof(char));
Serial.begin(115200);
Serial.println("\nWebServerCrashCheck.ino");
SaveCrash.print();
Serial.printf("Connecting to %s ", ssid);
// WiFi.persistent(false);
WiFi.mode(WIFI_STA);
// credentials will be added to onboard WiFi settings
WiFiMulti.addAP(ssid, password);
// you have to wait until WiFi.status() == WL_CONNECTED
// before starting MDNS and the webserver
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println(" connected");
// create AccessPoint with custom network name and password
WiFi.softAP(accessPointSsid, accessPointPassword);
Serial.printf("AccessPoint created. Connect to '%s' network and open '%s' in a web browser\n", accessPointSsid, WiFi.softAPIP().toString().c_str());
server.on("/", handleRoot);
server.on("/log", handleLog);
server.onNotFound(handleNotFound);
// start the http server
server.begin();
Serial.println("\nPress a key + <enter>");
Serial.println("0 : attempt to divide by zero");
Serial.println("e : attempt to read through a pointer to no object");
Serial.println("c : clear crash information");
Serial.println("p : print crash information");
Serial.println("b : store crash information to buffer and print buffer");
Serial.println("i : print IP address");
}
void loop(void)
{
server.handleClient();
MDNS.update();
// if a WiFi connection is successfully established
if (WiFi.status() == WL_CONNECTED)
{
// if the following action has not been perfomed yet
if (performOnce == 0)
{
// change the flag
performOnce = 1;
if (MDNS.begin("esp8266"))
{
MDNS.addService("http", "tcp", 80);
Serial.println("MDNS responder started");
}
Serial.printf("Connected to '%s'. Open '%s' or 'esp8266.local' in a web browser\n", ssid, WiFi.localIP().toString().c_str());
}
}
// read the keyboard
if (Serial.available() > 0)
{
char inChar = Serial.read();
switch (inChar)
{
case '0':
Serial.println("Attempting to divide by zero ...");
int result, zero;
zero = 0;
result = 1 / zero;
Serial.print("Result = ");
Serial.println(result);
break;
case 'e':
Serial.println("Attempting to read through a pointer to no object ...");
int* nullPointer;
nullPointer = NULL;
// null pointer dereference - read
// attempt to read a value through a null pointer
Serial.print(*nullPointer);
break;
case 'c':
SaveCrash.clear();
Serial.println("Crash information cleared");
break;
case 'p':
Serial.println("--- BEGIN of crash info ---");
SaveCrash.print();
Serial.println("--- END of crash info ---");
break;
case 'b':
// "clear" the buffer before serving a request
strcpy(_debugOutputBuffer, "");
Serial.println("--- BEGIN of crash info ---");
SaveCrash.crashToBuffer(_debugOutputBuffer);
Serial.println(_debugOutputBuffer);
Serial.println("--- END of crash info ---");
break;
case 'i':
// print the IP address of the http server
if (performOnce == 1)
{
Serial.printf("Connected to '%s' with IP address: %s\n", ssid, WiFi.localIP().toString().c_str());
}
else
{
Serial.printf("Connection to network '%s' not yet established\n", ssid);
}
Serial.printf("Connect to AccessPoint '%s' at IP address: %s\n", accessPointSsid, WiFi.softAPIP().toString().c_str());
break;
default:
break;
}
}
}
void handleRoot()
{
server.send(200, "text/html", "<html><body>Hello from ESP<br><a href='/log'>Crash Log</a></body></html>");
}
void handleLog()
{
// "clear" the buffer before serving a request
strcpy(_debugOutputBuffer, "");
SaveCrash.crashToBuffer(_debugOutputBuffer);
server.send(200, "text/plain", _debugOutputBuffer);
}
void handleNotFound()
{
String message = "File Not Found\n\n";
message += "URI: ";
message += server.uri();
message += "\nMethod: ";
message += (server.method() == HTTP_GET) ? "GET" : "POST";
message += "\nArguments: ";
message += server.args();
message += "\n";
for (uint8_t i = 0; i < server.args(); i++)
{
message += " " + server.argName(i) + ": " + server.arg(i) + "\n";
}
server.send(404, "text/plain", message);
}