forked from kofal.net/zmk
refactor(app): replace zmk_key with zmk_key_t
Aligns with typedef _t convention. PR: #531
This commit is contained in:
@@ -9,13 +9,13 @@
|
||||
#include <zephyr.h>
|
||||
#include <dt-bindings/zmk/keys.h>
|
||||
|
||||
typedef uint32_t zmk_key;
|
||||
typedef uint32_t zmk_key_t;
|
||||
typedef uint8_t zmk_mod;
|
||||
typedef uint8_t zmk_mod_flags;
|
||||
|
||||
struct zmk_key_event {
|
||||
uint32_t column;
|
||||
uint32_t row;
|
||||
zmk_key key;
|
||||
zmk_key_t key;
|
||||
bool pressed;
|
||||
};
|
||||
Reference in New Issue
Block a user