summaryrefslogtreecommitdiffstats
path: root/keyboards/helix/rev2/keymaps/led_test/led_test_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/rev2/keymaps/led_test/led_test_init.c')
-rw-r--r--keyboards/helix/rev2/keymaps/led_test/led_test_init.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/keyboards/helix/rev2/keymaps/led_test/led_test_init.c b/keyboards/helix/rev2/keymaps/led_test/led_test_init.c
index 85f5d1aa7..7f8813acd 100644
--- a/keyboards/helix/rev2/keymaps/led_test/led_test_init.c
+++ b/keyboards/helix/rev2/keymaps/led_test/led_test_init.c
@@ -1,20 +1,6 @@
#include QMK_KEYBOARD_H
-#if 1
-void led_test_init(void) {
- static int scan_count = 0;
- if( scan_count == 2 ) {
- rgblight_enable_noeeprom();
- rgblight_mode_noeeprom(RGBLIGHT_MODE_RGB_TEST);
- }
- if( scan_count < 3 ) scan_count ++;
-}
-
-#else
-// when qmk/qmk_firmware PullRequest #3113 available.
-// can use this?
-void startup_user(void) {
+void keyboard_post_init_user(void) {
rgblight_enable_noeeprom();
rgblight_mode_noeeprom(RGBLIGHT_MODE_RGB_TEST);
}
-#endif