Some refactoring to prep for BLE support.

This commit is contained in:
Pete Johanson 2020-05-12 14:15:33 -04:00
parent be53560b77
commit 04fe57d3a3
8 changed files with 43 additions and 19 deletions

11
src/keys.h Normal file
View file

@ -0,0 +1,11 @@
#pragma once
#include <zephyr.h>
typedef u64_t zmk_key;
struct zmk_key_event
{
zmk_key key;
bool pressed;
};