summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-05-18 09:11:46 -0400
committerPete Johanson <peter@peterjohanson.com>2020-05-18 09:11:46 -0400
commitc1905745b3578037d1791bd634a3d1607cafd525 (patch)
tree6c16a1fd7b1a7602470950cbf46e0dc353c4f329 /src/main.c
parentb3babe2505fe4542e18967d90ccfc2783943243f (diff)
Refactor build/config/keymaps.
* 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.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 708f4ff..00a1cd0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -8,9 +8,9 @@
#include <device.h>
#include <devicetree.h>
-#include "zmk.h"
-#include "kscan.h"
-#include "endpoints.h"
+#include <zmk/matrix.h>
+#include <zmk/kscan.h>
+#include <zmk/endpoints.h>
#define ZMK_KSCAN_DEV DT_LABEL(ZMK_MATRIX_NODE_ID)