From df068274f4a383ce6c944168ce41f859f3bc22c9 Mon Sep 17 00:00:00 2001 From: Zach Eveland Date: Tue, 30 Aug 2011 17:25:35 -0400 Subject: on a CDC or HID write() error, call setWriteError(). better handling of USB_Send errors in CDC. --- cores/arduino/HID.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'cores/arduino/HID.cpp') diff --git a/cores/arduino/HID.cpp b/cores/arduino/HID.cpp index cea90fc..e3aadb5 100644 --- a/cores/arduino/HID.cpp +++ b/cores/arduino/HID.cpp @@ -398,11 +398,15 @@ size_t Keyboard_::write(uint8_t c) _keyMap->charToKey(c,&keys); else { - if (c >= 128) + if (c >= 128) { + setWriteError(); return 0; + } c = pgm_read_byte(_asciimap + c); - if (!c) + if (!c) { + setWriteError(); return 0; + } if (c & 0x80) { keys.modifiers |= KEY_MODIFIER_LEFT_SHIFT; -- cgit v1.2.3-18-g5258