c1905745b3
* Move all headers to `include/zmk` directory. * Update includes to reference them properly. * Add `keymap.c` file from keymap, if found. * Toplevel CONFIG_ZMK_BLE aggregate config setting.
12 lines
No EOL
153 B
C
12 lines
No EOL
153 B
C
#pragma once
|
|
|
|
#include <zephyr.h>
|
|
#include <dt-bindings/zmk/keys.h>
|
|
|
|
typedef u64_t zmk_key;
|
|
|
|
struct zmk_key_event
|
|
{
|
|
zmk_key key;
|
|
bool pressed;
|
|
}; |