Skip to content

Commit 24c91f5

Browse files
committed
Quickfix compilation
1 parent 237620e commit 24c91f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

platforms/Arduino/Arduino.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Module* m;
2121
#define UART_PIN 3
2222

2323
void startDebuggerStd(void* pvParameter) {
24-
Channel* sink = new OutChannel(stdout);
24+
Channel* sink = new Sink(stdout);
2525
wac->debugger->setChannel(sink);
2626
sink->open();
2727

platforms/ESP-IDF/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ WARDuino* wac = WARDuino::instance();
2828
Module* m;
2929

3030
void startDebuggerStd(void* pvParameter) {
31-
Channel* duplex = new FileChannel(stdin, stdout);
31+
Channel* duplex = new Duplex(stdin, stdout);
3232
wac->debugger->setChannel(duplex);
3333
duplex->open();
3434

0 commit comments

Comments
 (0)