Clear HID reports on crash
This commit is contained in:
parent
013046b44d
commit
94c042fec5
@ -386,6 +386,10 @@ class KMKKeyboard:
|
|||||||
self._hid_helper = self._hid_helper(**self._go_args)
|
self._hid_helper = self._hid_helper(**self._go_args)
|
||||||
self._hid_send_enabled = True
|
self._hid_send_enabled = True
|
||||||
|
|
||||||
|
def _deinit_hid(self) -> None:
|
||||||
|
self._hid_helper.clear_all()
|
||||||
|
self._hid_helper.send()
|
||||||
|
|
||||||
def _init_matrix(self) -> None:
|
def _init_matrix(self) -> None:
|
||||||
if self.matrix is None:
|
if self.matrix is None:
|
||||||
if debug.enabled:
|
if debug.enabled:
|
||||||
@ -498,8 +502,12 @@ class KMKKeyboard:
|
|||||||
|
|
||||||
def go(self, hid_type=HIDModes.USB, secondary_hid_type=None, **kwargs) -> None:
|
def go(self, hid_type=HIDModes.USB, secondary_hid_type=None, **kwargs) -> None:
|
||||||
self._init(hid_type=hid_type, secondary_hid_type=secondary_hid_type, **kwargs)
|
self._init(hid_type=hid_type, secondary_hid_type=secondary_hid_type, **kwargs)
|
||||||
while True:
|
try:
|
||||||
self._main_loop()
|
while True:
|
||||||
|
self._main_loop()
|
||||||
|
finally:
|
||||||
|
debug('Unexpected error: cleaning up')
|
||||||
|
self._deinit_hid()
|
||||||
|
|
||||||
def _init(
|
def _init(
|
||||||
self,
|
self,
|
||||||
|
Loading…
Reference in New Issue
Block a user