summaryrefslogtreecommitdiff
path: root/keyboard/preonic/preonic.c
diff options
context:
space:
mode:
authorJack Humbert2016-04-05 09:44:01 -0400
committerJack Humbert2016-04-05 09:44:01 -0400
commit931b0a79fc071498c229b0051be0ebadd934a549 (patch)
tree29a2fca3e86217958292286a91e2cc7fcf33070a /keyboard/preonic/preonic.c
parente1020672ac42a423a16747d2272cd2203bd3f988 (diff)
updates to noise
Diffstat (limited to 'keyboard/preonic/preonic.c')
-rw-r--r--keyboard/preonic/preonic.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboard/preonic/preonic.c b/keyboard/preonic/preonic.c
index e9ececb6d..f639f247a 100644
--- a/keyboard/preonic/preonic.c
+++ b/keyboard/preonic/preonic.c
@@ -10,6 +10,11 @@ void matrix_scan_user(void) {
};
+__attribute__ ((weak))
+void process_action_user(keyrecord_t *record) {
+
+};
+
void matrix_init_kb(void) {
#ifdef BACKLIGHT_ENABLE
backlight_init_ports();
@@ -30,3 +35,7 @@ void matrix_init_kb(void) {
void matrix_scan_kb(void) {
matrix_scan_user();
};
+
+void process_action_kb(keyrecord_t *record) {
+ process_action_user(record);
+} \ No newline at end of file