diff options
author | tmk <nobody@nowhere> | 2012-08-25 15:49:08 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-08-28 21:56:15 +0900 |
commit | c5060ea81942b0e3f8577536ff78402a19abe3d3 (patch) | |
tree | bcdd4cd269be3064982014b0afdc0aea628d7048 /protocol/usb_hid/override_Serial.cpp | |
parent | 9382bf2f765cfbb8f7a9a48157391cac2bb71780 (diff) | |
download | firmware-c5060ea81942b0e3f8577536ff78402a19abe3d3.tar.gz firmware-c5060ea81942b0e3f8577536ff78402a19abe3d3.tar.bz2 firmware-c5060ea81942b0e3f8577536ff78402a19abe3d3.zip |
test build of 'Host shield' in minimal env.
Diffstat (limited to 'protocol/usb_hid/override_Serial.cpp')
-rw-r--r-- | protocol/usb_hid/override_Serial.cpp | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/protocol/usb_hid/override_Serial.cpp b/protocol/usb_hid/override_Serial.cpp new file mode 100644 index 000000000..e1755a5dc --- /dev/null +++ b/protocol/usb_hid/override_Serial.cpp @@ -0,0 +1,51 @@ +/* + * 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; |