diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2015-10-27 12:42:30 -0400 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2015-10-27 12:42:30 -0400 |
| commit | 547da78335298df6666200c6063ac6f1aba312fd (patch) | |
| tree | 47df0252ee24b1ecc27b9dd0458c51f20bf088c3 /protocol/usb_hid/override_Serial.cpp | |
| parent | a766918d5c48204375f4c207b30bbbf1389df14f (diff) | |
| parent | fa33719adab1393753312d298b8c365e04e844b9 (diff) | |
merging tmk
Diffstat (limited to 'protocol/usb_hid/override_Serial.cpp')
| -rw-r--r-- | protocol/usb_hid/override_Serial.cpp | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/protocol/usb_hid/override_Serial.cpp b/protocol/usb_hid/override_Serial.cpp deleted file mode 100644 index e1755a5dc7..0000000000 --- a/protocol/usb_hid/override_Serial.cpp +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Null implementation of Serial to dump debug print into blackhole - */ -#include "Arduino.h" -#include "sendchar.h" - -#include "USBAPI.h" - - -void Serial_::begin(uint16_t baud_count) -{ -} - -void Serial_::end(void) -{ -} - -void Serial_::accept(void) -{ -} - -int Serial_::available(void) -{ - return 0; -} - -int Serial_::peek(void) -{ - return -1; -} - -int Serial_::read(void) -{ - return -1; -} - -void Serial_::flush(void) -{ -} - -size_t Serial_::write(uint8_t c) -{ - sendchar(c); - return 1; -} - -Serial_::operator bool() { - return true; -} - -Serial_ Serial; |
