Compare commits

..

No commits in common. "3b4a22bff767e50bc89ba7303db0168a50480c04" and "a6031798daebb41e93df7dfb9e82335d169272ec" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View File

@ -247,7 +247,7 @@ void Debug_ShowDTCs()
else else
strcpy(buff_active, "none"); strcpy(buff_active, "none");
Debug_pushMessage("%s \t %6d \t %s \t %d", buff_timestamp, DTCStorage[i].Number, buff_active, DTCStorage[i].severity); Debug_pushMessage("%s \t %6d \t %s", buff_timestamp, DTCStorage[i].Number, buff_active);
} }
} }
} }

View File

@ -256,7 +256,7 @@ void WebserverPOST_Callback(AsyncWebServerRequest *request)
{ {
request->send(LittleFS, "/post.htm", "text/html", false, processor); request->send(LittleFS, "/post.htm", "text/html", false, processor);
Debug_pushMessage("POST:\n"); Serial.print("POST:\n");
int paramsNr = request->params(); int paramsNr = request->params();
for (int i = 0; i < paramsNr; i++) for (int i = 0; i < paramsNr; i++)
{ {
@ -552,6 +552,7 @@ void Websocket_HandleMessage(void *arg, uint8_t *data, size_t len)
if (strcmp((char *)data, "start") == 0) if (strcmp((char *)data, "start") == 0)
{ {
SetDebugportStatus(dbg_Webui, enabled); SetDebugportStatus(dbg_Webui, enabled);
Debug_ShowDTCs();
} }
else if (strcmp((char *)data, "stop") == 0) else if (strcmp((char *)data, "stop") == 0)
{ {