commit e67a4ba7ce476b5bba273a2d5b693b3641b27dcb
parent 9f0f39555ce321af3769beaed4af3364ec107590
Author: Luis Garcia <luis@bitjester.com>
Date: Wed, 13 Sep 2023 21:08:00 -0600
Update to 'peterfalken' userspace configurations (#21836)
Diffstat:
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/users/peterfalken/config.h b/users/peterfalken/config.h
@@ -14,6 +14,7 @@
#endif
// Space optimizations
+#define LAYER_STATE_8BIT
#undef LOCKING_SUPPORT_ENABLE
#undef LOCKING_RESYNC_ENABLE
diff --git a/users/peterfalken/peterfalken.c b/users/peterfalken/peterfalken.c
@@ -3,6 +3,15 @@
#include "peterfalken.h"
+// Magic keycodes - overwrite placeholder functions
+uint16_t keycode_config(uint16_t keycode) {
+ return keycode;
+}
+
+uint8_t mod_config(uint8_t mod) {
+ return mod;
+}
+
// Switch layer
#ifndef CUSTOM_LAYER_STATE
layer_state_t layer_state_set_user(layer_state_t state) {