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

Debug info

parent 9b84e999
...@@ -152,6 +152,8 @@ void setup() ...@@ -152,6 +152,8 @@ void setup()
Serial.println(); Serial.println();
Serial.println("Starting up..."); Serial.println("Starting up...");
// iotWebConf.getApTimeoutParameter()->defaultValue = "600";
// -- Initializing the configuration. // -- Initializing the configuration.
iotWebConf.init(); iotWebConf.init();
...@@ -168,7 +170,9 @@ void setup() ...@@ -168,7 +170,9 @@ void setup()
void loop() void loop()
{ {
iotWebConf.doLoop(); iotWebConf.doLoop();
Serial.print("<");
shell::checkSerialInput(); shell::checkSerialInput();
Serial.print(">");
delay(50); delay(50);
} }
...@@ -346,6 +350,7 @@ namespace shell { ...@@ -346,6 +350,7 @@ namespace shell {
void checkSerialInput() { void checkSerialInput() {
while (Serial.available() > 0) { while (Serial.available() > 0) {
Serial.print("?");
shell::processSerialInput(Serial.read()); shell::processSerialInput(Serial.read());
} }
} }
......
Supports Markdown
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