fix(split): do not attempt to send HID from slave sides of split boards, resolves infinite hang after single UART send
parent
aeee945728
commit
eb41d704b0
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue