mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-28 17:05:18 -05:00
feat(hid): Make keypad report boot friendly
Add missing byte to make keypad report boot friendly.
This commit is contained in:
@@ -9,8 +9,8 @@ LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
|
||||
|
||||
#include <zmk/hid.h>
|
||||
|
||||
static struct zmk_hid_keypad_report kp_report = {.report_id = 1,
|
||||
.body = {.modifiers = 0, .keys = {0}}};
|
||||
static struct zmk_hid_keypad_report kp_report = {
|
||||
.report_id = 1, .body = {.modifiers = 0, ._reserved = 0, .keys = {0}}};
|
||||
|
||||
static struct zmk_hid_consumer_report consumer_report = {.report_id = 2, .body = {.keys = {0}}};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user