We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 237620e commit 24c91f5Copy full SHA for 24c91f5
platforms/Arduino/Arduino.ino
@@ -21,7 +21,7 @@ Module* m;
21
#define UART_PIN 3
22
23
void startDebuggerStd(void* pvParameter) {
24
- Channel* sink = new OutChannel(stdout);
+ Channel* sink = new Sink(stdout);
25
wac->debugger->setChannel(sink);
26
sink->open();
27
platforms/ESP-IDF/main.cpp
@@ -28,7 +28,7 @@ WARDuino* wac = WARDuino::instance();
28
Module* m;
29
30
31
- Channel* duplex = new FileChannel(stdin, stdout);
+ Channel* duplex = new Duplex(stdin, stdout);
32
wac->debugger->setChannel(duplex);
33
duplex->open();
34
0 commit comments