aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.h
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2022-12-19 17:01:11 +0100
committerLouis Burda <quent.burda@gmail.com>2022-12-19 17:01:11 +0100
commitd7c506450be613d6575649218fbcc90a4fabd150 (patch)
tree72319f85b7bce6842d30e495bb06270c81850c33 /src/keymap.h
parente4783bbcc4214416befceb53f6af9ebdfb35ba86 (diff)
downloadsxkbd-d7c506450be613d6575649218fbcc90a4fabd150.tar.gz
sxkbd-d7c506450be613d6575649218fbcc90a4fabd150.zip
Enable temporary (weak) mods for specific keys and layer switching with mods
Diffstat (limited to 'src/keymap.h')
-rw-r--r--src/keymap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/keymap.h b/src/keymap.h
index d8a5755..7f78e8b 100644
--- a/src/keymap.h
+++ b/src/keymap.h
@@ -2,8 +2,13 @@
#include "keymat.h"
+#include "pico/types.h"
+
#include <stdint.h>
+void process_user_keypress_new(uint8_t sym, uint x, uint y);
+void process_user_keyrelease_new(uint8_t sym, uint x, uint y);
+
extern const uint32_t keymap_layers_de[][KEY_ROWS][KEY_COLS];
extern const uint32_t keymap_layers_de_count;