Skip to content

Commit b950712

Browse files
committed
Fix availableForWrite
1 parent 38f7fca commit b950712

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cores/arduino/ard_sup/uart/ap3_uart.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ int Uart::available()
9090

9191
int Uart::availableForWrite()
9292
{
93-
// return _tx_buffer.availableForStore();
94-
return 127; // todo:
93+
return _tx_buffer.availableForStore();
9594
}
9695

9796
int Uart::peek()

0 commit comments

Comments
 (0)