diff options
author | Maxim Devaev <[email protected]> | 2022-07-22 08:43:27 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-07-22 08:43:27 +0300 |
commit | d3dbf19399c09399fce96d5303fe684d2aeb1150 (patch) | |
tree | ca86b92dd148d544109254aa41cf529f7531a875 /hid/lib/drivers-avr/usb/hid.h | |
parent | 3ba15e824e319926c810414b44fb30a7d98419c3 (diff) |
avr hid: removed KEY_ERROR_UNDEFINED
Diffstat (limited to 'hid/lib/drivers-avr/usb/hid.h')
-rw-r--r-- | hid/lib/drivers-avr/usb/hid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/lib/drivers-avr/usb/hid.h b/hid/lib/drivers-avr/usb/hid.h index 1fc80eeb..6b334af8 100644 --- a/hid/lib/drivers-avr/usb/hid.h +++ b/hid/lib/drivers-avr/usb/hid.h @@ -99,7 +99,7 @@ class UsbKeyboard : public DRIVERS::Keyboard { void sendKey(uint8_t code, bool state) override { uint8_t usb_code = keymapUsb(code); - if (usb_code != KEY_ERROR_UNDEFINED) { + if (usb_code > 0) { if (state ? _kbd.add(usb_code) : _kbd.remove(usb_code)) { _sendCurrent(); } |