diff options
Diffstat (limited to 'app/include/zmk/keys.h')
-rw-r--r-- | app/include/zmk/keys.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/include/zmk/keys.h b/app/include/zmk/keys.h index af474b1..27d34b0 100644 --- a/app/include/zmk/keys.h +++ b/app/include/zmk/keys.h @@ -9,14 +9,14 @@ #include <zephyr.h> #include <dt-bindings/zmk/keys.h> -typedef u32_t zmk_key; -typedef u8_t zmk_action; -typedef u8_t zmk_mod; -typedef u8_t zmk_mod_flags; +typedef uint32_t zmk_key; +typedef uint8_t zmk_action; +typedef uint8_t zmk_mod; +typedef uint8_t zmk_mod_flags; struct zmk_key_event { - u32_t column; - u32_t row; + uint32_t column; + uint32_t row; zmk_key key; bool pressed; };
\ No newline at end of file |