Skip to content

Commit d61d83e

Browse files
committed
Merge branch 'master' of https://github.com/mp-se/gravitymon
2 parents b4b5ebf + cf712e4 commit d61d83e

15 files changed

+71
-57
lines changed

bin/firmware.bin

-192 Bytes
Binary file not shown.

bin/firmware32.bin

-144 Bytes
Binary file not shown.

bin/firmware32c3.bin

-80 Bytes
Binary file not shown.

bin/firmware32c3v1.bin

-80 Bytes
Binary file not shown.

bin/firmware32lite.bin

-144 Bytes
Binary file not shown.

bin/firmware32s2.bin

-128 Bytes
Binary file not shown.

bin/firmware32s3.bin

-1.38 KB
Binary file not shown.

bin/version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "project":"gravmon", "version":"1.4.0", "html": [ ] }
1+
{ "project":"gravmon", "version":"1.4.1", "html": [ ] }

html/index.htm

+21-30
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
iSpindel configuration file has been detected, do you want to copy formula and gyro calibration ?
102102
</div>
103103
<div class="col-md-2">
104-
<button class="btn btn-primary btn-sm" type="button" id="migrate-btn" data-bs-toggle="collapse" data-bs-target="#collapseSupport" aria-expanded="false" aria-controls="collapseSupport" data-bs-toggle="tooltip" name="support-btn" id="support-btn" title="Collect data relevant for a support case">
104+
<button class="btn btn-primary btn-sm" type="button" id="migrate-btn" data-bs-toggle="tooltip" name="migrate-btn" title="Migrate ispindel config">
105105
Migrate
106106
</button>
107107
</div>
@@ -124,25 +124,22 @@
124124
// var url = "/test/migrate.json";
125125
$.getJSON(url, function (cfg) {
126126
console.log( cfg );
127-
128-
gyro = {}
129-
gyro["ax"] = cfg["Offset"][0];
130-
gyro["ay"] = cfg["Offset"][1];
131-
gyro["az"] = cfg["Offset"][2];
132-
gyro["gx"] = cfg["Offset"][3];
133-
gyro["gy"] = cfg["Offset"][4];
134-
gyro["gz"] = cfg["Offset"][5];
135127

136128
data = {}
137-
data["gyro-calibration-data"] = gyro;
129+
data["ax"] = cfg["Offset"][0];
130+
data["ay"] = cfg["Offset"][1];
131+
data["az"] = cfg["Offset"][2];
132+
data["gx"] = cfg["Offset"][3];
133+
data["gy"] = cfg["Offset"][4];
134+
data["gz"] = cfg["Offset"][5];
138135
data["gravity-formula"] = cfg["POLY"];
139136

140137
$.ajax( "/api/migrate", {
141138
type: "POST",
142139
data: JSON.stringify(data),
143140
statusCode: {
144141
200: function(response) {
145-
showSuccess("Migration completed!");
142+
showSuccess("Migration completed! Please restart device for changes to be applied to gyro.");
146143
hideMigration();
147144
$('#spinner').hide();
148145
},
@@ -269,15 +266,15 @@ <h2 class="accordion-header" id="headingSoftware">
269266
};
270267
</script>
271268

272-
<button class="btn btn-primary btn-sm" id="log-btn" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLog" aria-expanded="false" aria-controls="collapseLog" data-bs-toggle="tooltip" title="Load and show the last 10 errors that has occured on the device">
269+
<button class="btn btn-primary btn-sm" id="log-btn" type="button" data-bs-toggle="collapse" data-bs-target="#collapseLog" aria-expanded="false" aria-controls="collapseLog">
273270
View error log
274271
</button>
275272

276-
<button class="btn btn-secondary btn-sm" id="issue-btn" type="button" data-bs-toggle="tooltip" name="github-btn" id="github-btn" title="Go to github and place a issue">
273+
<button class="btn btn-secondary btn-sm" type="button" data-bs-toggle="tooltip" name="github-btn" id="github-btn" title="Go to github and place a issue">
277274
Submit a issue on github
278275
</button>
279276

280-
<button class="btn btn-secondary btn-sm" id="support-btn" type="button" data-bs-toggle="collapse" data-bs-target="#collapseSupport" aria-expanded="false" aria-controls="collapseSupport" data-bs-toggle="tooltip" name="support-btn" id="support-btn" title="Collect data relevant for a support case">
277+
<button class="btn btn-secondary btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapseSupport" aria-expanded="false" aria-controls="collapseSupport" data-bs-toggle="tooltip" name="support-btn" id="support-btn" title="Collect data relevant for a support case">
281278
Gather support information
282279
</button>
283280

@@ -361,23 +358,17 @@ <h2 class="accordion-header" id="headingSoftware">
361358
//var url = "/test/adv.json";
362359
$.getJSON(url, function (cfg) {
363360
debug["advanced"] = cfg;
364-
365-
var url = "/api/upload";
366-
//var url = "/test/upload.json";
367-
$.getJSON(url, function (cfg) {
368-
debug["files"] = cfg;
369361

370-
var url = "/log";
371-
//var url = "/test/log";
372-
$.ajax({url: url, method: 'get', success: function (data) {
373-
debug["log"] = data.split("\n");
374-
var s = JSON.stringify(debug, null, 2);
375-
$("#supportContent").text( s );
376-
$('#spinner').hide();
377-
//navigator.clipboard.writeText(s);
378-
//alert("Support information copied to clipboard");
379-
}
380-
});
362+
var url = "/log";
363+
//var url = "/test/log";
364+
$.ajax({url: url, method: 'get', success: function (data) {
365+
debug["log"] = data.split("\n");
366+
var s = JSON.stringify(debug, null, 2);
367+
$("#supportContent").text( s );
368+
$('#spinner').hide();
369+
//navigator.clipboard.writeText(s);
370+
//alert("Support information copied to clipboard");
371+
}
381372
});
382373
});
383374
});

html/index.min.htm

+11-17
Large diffs are not rendered by default.

platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ build_flags =
3737
-D WEB_DISABLE_LOGGING
3838
-D MAIN_DISABLE_LOGGING
3939
-D USE_LITTLEFS=true
40-
-D CFG_APPVER="\"1.4.0\""
40+
-D CFG_APPVER="\"1.4.1\""
4141
#-D CFG_GITREV=\""beta-3\""
4242
!python script/git_rev.py
4343
lib_deps =

src/webserver.cpp

+27-7
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ void WebServerHandler::webHandleMigrate(AsyncWebServerRequest *request) {
11871187

11881188
#if defined(ESP8266)
11891189
DynamicJsonDocument doc(500);
1190-
DeserializationError err = deserializeJson(doc, request->arg("plain"));
1190+
DeserializationError err = deserializeJson(doc, request->arg("body"));
11911191

11921192
if (err) {
11931193
writeErrorLog("CFG : Failed to parse migration data (json)");
@@ -1199,16 +1199,19 @@ void WebServerHandler::webHandleMigrate(AsyncWebServerRequest *request) {
11991199
myConfig.setGravityFormula(doc[PARAM_GRAVITY_FORMULA]);
12001200

12011201
RawGyroData gyro = {0, 0, 0, 0, 0, 0};
1202-
gyro.ax = doc[PARAM_GYRO_CALIBRATION]["ax"];
1203-
gyro.ay = doc[PARAM_GYRO_CALIBRATION]["ay"];
1204-
gyro.az = doc[PARAM_GYRO_CALIBRATION]["az"];
1205-
gyro.gx = doc[PARAM_GYRO_CALIBRATION]["gx"];
1206-
gyro.gy = doc[PARAM_GYRO_CALIBRATION]["gy"];
1207-
gyro.gz = doc[PARAM_GYRO_CALIBRATION]["gz"];
1202+
gyro.ax = doc["ax"];
1203+
gyro.ay = doc["ay"];
1204+
gyro.az = doc["az"];
1205+
gyro.gx = doc["gx"];
1206+
gyro.gy = doc["gy"];
1207+
gyro.gz = doc["gz"];
12081208

12091209
myConfig.setGyroCalibration(gyro);
12101210
myConfig.saveFile();
12111211

1212+
Log.notice(F("WEB : %s." CR), myConfig.getGravityFormula());
1213+
Log.notice(F("WEB : %d." CR), myConfig.getGyroCalibration().ax);
1214+
12121215
LittleFS.rename("/config.json", "/ispindel.json");
12131216
request->send(200, "text/plain", F("Data migrated"));
12141217
#else
@@ -1218,6 +1221,20 @@ void WebServerHandler::webHandleMigrate(AsyncWebServerRequest *request) {
12181221
LOG_PERF_STOP("webserver-api-migrate");
12191222
}
12201223

1224+
void WebServerHandler::webHandleMigrateUndo(AsyncWebServerRequest *request) {
1225+
LOG_PERF_START("webserver-api-migrate-undo");
1226+
Log.notice(F("WEB : webServer callback for /api/migrate/undo." CR));
1227+
1228+
#if defined(ESP8266)
1229+
LittleFS.rename("/ispindel.json", "/config.json");
1230+
request->send(200, "text/plain", F("ispindel config restored"));
1231+
#else
1232+
request->send(404, "text/plain", F("Not implemented"));
1233+
#endif
1234+
1235+
LOG_PERF_STOP("webserver-api-migrate-undo");
1236+
}
1237+
12211238
void WebServerHandler::webHandlePageNotFound(AsyncWebServerRequest *request) {
12221239
Log.error(F("WEB : URL not found %s received." CR), request->url().c_str());
12231240
request->send(404, "text/plain", F("URL not found"));
@@ -1350,6 +1367,9 @@ bool WebServerHandler::setupWebServer() {
13501367
_server->on("/api/restart", HTTP_GET,
13511368
std::bind(&WebServerHandler::webHandleRestart, this,
13521369
std::placeholders::_1));
1370+
_server->on("/api/migrate/undo", HTTP_GET,
1371+
std::bind(&WebServerHandler::webHandleMigrateUndo, this,
1372+
std::placeholders::_1));
13531373
_server->on("/api/migrate", HTTP_POST,
13541374
std::bind(&WebServerHandler::webHandleMigrate, this,
13551375
std::placeholders::_1));

src/webserver.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ class WebServerHandler {
109109
void webHandlePageNotFound(AsyncWebServerRequest *request);
110110
void webHandleRestart(AsyncWebServerRequest *request);
111111
void webHandleMigrate(AsyncWebServerRequest *request);
112+
void webHandleMigrateUndo(AsyncWebServerRequest *request);
112113

113114
String readFile(String fname);
114115
bool writeFile(String fname, String data);

src_docs/source/releases.rst

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Releases
44
########
55

6+
v1.4.1
7+
======
8+
9+
Issues adressed
10+
++++++++++++++++
11+
* Fixed broken iSpindel configuration migration for the esp8266.
12+
* Fixed broken gather support button.
13+
614
v1.4.0
715
======
816

src_docs/source/services.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ Finally add the following format template to HTTP POST 1
456456
457457
{
458458
"apikey": "${token}",
459-
"type":"ispindel",
459+
"type":"gravitymon",
460460
"brand":"wemos_d1_mini",
461461
"version":"${app-ver}",
462462
"chipid":"${id}",

0 commit comments

Comments
 (0)