diff options
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/hid.c | 2 | ||||
-rw-r--r-- | app/src/usb.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/app/src/hid.c b/app/src/hid.c index 001d7d3..1925765 100644 --- a/app/src/hid.c +++ b/app/src/hid.c @@ -8,7 +8,7 @@ LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL); #include <zmk/hid.h> -#include <dt-bindings/zmk/keys.h> +#include <dt-bindings/zmk/modifiers.h> static struct zmk_hid_keypad_report kp_report = { .report_id = 1, .body = {.modifiers = 0, ._reserved = 0, .keys = {0}}}; diff --git a/app/src/usb.c b/app/src/usb.c index d4bc2e4..79d03c7 100644 --- a/app/src/usb.c +++ b/app/src/usb.c @@ -9,7 +9,6 @@ #include <usb/usb_device.h> #include <usb/class/usb_hid.h> -#include <dt-bindings/zmk/keys.h> #include <zmk/hid.h> #include <zmk/keymap.h> |