aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox_ez
diff options
context:
space:
mode:
authorDrashna Jaelre2024-08-18 02:35:10 +0200
committerGitHub2024-08-18 02:35:10 +0200
commitab4c13e835060f6fb921a7d206e28f9525d34178 (patch)
treebd5f272dccf280f21596f43fd15c275d09d78d3c /keyboards/ergodox_ez
parentfaf51c7449880d38a006a19bf900be547177928a (diff)
Add dynamic macro keyboard callbacks (#24142)
Diffstat (limited to 'keyboards/ergodox_ez')
-rw-r--r--keyboards/ergodox_ez/ergodox_ez.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/keyboards/ergodox_ez/ergodox_ez.c b/keyboards/ergodox_ez/ergodox_ez.c
index 5fc173917f..e23231ecb8 100644
--- a/keyboards/ergodox_ez/ergodox_ez.c
+++ b/keyboards/ergodox_ez/ergodox_ez.c
@@ -382,15 +382,23 @@ static bool is_on = false;
static bool is_dynamic_recording = false;
static uint16_t dynamic_loop_timer;
-void dynamic_macro_record_start_user(int8_t direction) {
+bool dynamic_macro_record_start_kb(int8_t direction) {
+ if (!dynamic_macro_record_start_user(direction)) {
+ return false;
+ }
is_dynamic_recording = true;
dynamic_loop_timer = timer_read();
ergodox_right_led_1_on();
+ return true;
}
-void dynamic_macro_record_end_user(int8_t direction) {
+bool dynamic_macro_record_end_kb(int8_t direction) {
+ if (!dynamic_macro_record_end_user(direction)) {
+ return false;
+ }
is_dynamic_recording = false;
layer_state_set_user(layer_state);
+ return true;
}
#endif