Fix mouse keys freezing by always utilizing the hog queue

This commit is contained in:
Cem Aksoylar 2023-04-11 23:53:31 -07:00 committed by urob
parent fbd7962526
commit 5e0f905570

View file

@ -210,11 +210,7 @@ int zmk_endpoints_send_mouse_report() {
#if IS_ENABLED(CONFIG_ZMK_BLE)
case ZMK_ENDPOINT_BLE: {
#if IS_ENABLED(CONFIG_ZMK_MOUSE_WORK_QUEUE_DEDICATED)
int err = zmk_hog_send_mouse_report_direct(&mouse_report->body);
#else
int err = zmk_hog_send_mouse_report(&mouse_report->body);
#endif
if (err) {
LOG_ERR("FAILED TO SEND OVER HOG: %d", err);
}