diff options
Diffstat (limited to 'common/host.c')
-rw-r--r-- | common/host.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/host.c b/common/host.c index cc26d55c22..8dd2abbee8 100644 --- a/common/host.c +++ b/common/host.c @@ -168,13 +168,16 @@ void host_mouse_send(report_mouse_t *report) void host_system_send(uint16_t data) { + static uint16_t last_data = 0; + if (data == last_data) return; + last_data = data; + if (!driver) return; (*driver->send_system)(data); } void host_consumer_send(uint16_t data) { - // TODO: this is needed? static uint16_t last_data = 0; if (data == last_data) return; last_data = data; |