We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2e7b28 commit e7b738bCopy full SHA for e7b738b
platforms/CLI-Emulator/main.cpp
@@ -121,7 +121,6 @@ void *startDebuggerCommunication(void *arg) {
121
uint8_t buffer[1024] = {0};
122
while (true) {
123
while ((valread = duplex->read(buffer, 1024)) != -1) {
124
- duplex->write("got a message ... \n", 19);
125
WARDuino::instance()->handleInterrupt(valread - 1, buffer);
126
}
127
platforms/ESP-IDF/main.cpp
@@ -39,7 +39,6 @@ void startDebuggerStd(void* pvParameter) {
39
vTaskDelay(1000 / portTICK_PERIOD_MS);
40
41
42
43
wac->handleInterrupt(valread - 1, buffer);
44
45
0 commit comments