diff options
author | Devaev Maxim <[email protected]> | 2020-11-15 23:16:46 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-11-15 23:16:46 +0300 |
commit | f5250bb0e90b005128bd5025604cc41d3c3f7392 (patch) | |
tree | 75fc6b4d1e89c0dcb0727fa7e16d961d0f8c2fd8 /hid/src/ps2/hid.h | |
parent | d99771b2cd0110c9a5fcf9279184451c51a2d120 (diff) |
display endpoints state
Diffstat (limited to 'hid/src/ps2/hid.h')
-rw-r--r-- | hid/src/ps2/hid.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hid/src/ps2/hid.h b/hid/src/ps2/hid.h index eca2bf4b..3f226090 100644 --- a/hid/src/ps2/hid.h +++ b/hid/src/ps2/hid.h @@ -41,6 +41,10 @@ class Ps2HidKeyboard { _dev.keyboard_init(); } + bool isOnline() { + return true; + } + void periodic() { _dev.keyboard_handle(&_leds); } |