From 2b98ca5f8dc3ae023f04b3e7d1eaf8f11f8786c0 Mon Sep 17 00:00:00 2001 From: Stefan Dorn Date: Sun, 12 Jun 2016 00:33:34 +0100 Subject: [PATCH] simplify dependency --- src/keyboard/layout.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/keyboard/layout.h b/src/keyboard/layout.h index f163361..6e86f0a 100644 --- a/src/keyboard/layout.h +++ b/src/keyboard/layout.h @@ -13,13 +13,14 @@ #include #include "../lib/keyboard.h" #include "../lib/keyfunctions.h" -#include "./controller.h" typedef void (*void_funptr_t)(void); // -------------------------------------------------------------------- -#define KB_LAYERS 10 +#define KB_ROWS 6 // must match real life +#define KB_COLUMNS 14 // must match real life +#define KB_LAYERS 10 // --------------------------------------------------------------------