fix(split): do not attempt to send HID from slave sides of split boards, resolves infinite hang after single UART send

This commit is contained in:
Josh Klar 2021-06-19 19:19:03 -07:00
parent aeee945728
commit eb41d704b0
No known key found for this signature in database
GPG Key ID: A4A0C7B4E8EEE222

@ -154,6 +154,9 @@ class Split(Module):
return
def before_hid_send(self, keyboard):
if not self._is_target:
keyboard.hid_pending = False
return
def after_hid_send(self, keyboard):