Commit 2d31a9f3 authored by Eric Duminil's avatar Eric Duminil
Browse files

Debug info

parent 9b84e999
Pipeline #5994 failed with stage
in 20 seconds
......@@ -152,6 +152,8 @@ void setup()
Serial.println();
Serial.println("Starting up...");
// iotWebConf.getApTimeoutParameter()->defaultValue = "600";
// -- Initializing the configuration.
iotWebConf.init();
......@@ -168,7 +170,9 @@ void setup()
void loop()
{
iotWebConf.doLoop();
Serial.print("<");
shell::checkSerialInput();
Serial.print(">");
delay(50);
}
......@@ -346,6 +350,7 @@ namespace shell {
void checkSerialInput() {
while (Serial.available() > 0) {
Serial.print("?");
shell::processSerialInput(Serial.read());
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment