Commit 53398ba9 authored by Eric Duminil's avatar Eric Duminil
Browse files

Removing debug info. Still not working

parent 2d31a9f3
Pipeline #5995 failed with stage
in 21 seconds
...@@ -170,10 +170,7 @@ void setup() ...@@ -170,10 +170,7 @@ void setup()
void loop() void loop()
{ {
iotWebConf.doLoop(); iotWebConf.doLoop();
Serial.print("<");
shell::checkSerialInput(); shell::checkSerialInput();
Serial.print(">");
delay(50);
} }
/** /**
...@@ -350,7 +347,6 @@ namespace shell { ...@@ -350,7 +347,6 @@ namespace shell {
void checkSerialInput() { void checkSerialInput() {
while (Serial.available() > 0) { while (Serial.available() > 0) {
Serial.print("?");
shell::processSerialInput(Serial.read()); 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