Skip to content
Snippets Groups Projects
Commit 833c2e54 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Add an empty flushTX to MarlinSerialUSB_Due

parent 38363902
No related branches found
No related tags found
No related merge requests found
......@@ -114,8 +114,8 @@ bool MarlinSerialUSB::available(void) {
(usb_task_cdc_isenabled() && udi_cdc_is_rx_ready());
}
void MarlinSerialUSB::flush(void) {
}
void MarlinSerialUSB::flush(void) { }
void MarlinSerialUSB::flushTX(void) { }
void MarlinSerialUSB::write(const uint8_t c) {
......
......@@ -46,6 +46,7 @@ public:
static int peek(void);
static int read(void);
static void flush(void);
static void flushTX(void);
static bool available(void);
static void write(const uint8_t c);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment