diff options
author | vin <git@vineetk.net> | 2023-10-15 19:46:33 -0400 |
---|---|---|
committer | vin <git@vineetk.net> | 2023-10-15 19:46:33 -0400 |
commit | 7ed78a843d4a90ae8adc69bf3c3dbf573a379f75 (patch) | |
tree | 420f8e7829b46bf43b5dbafc46f0a72f644e9588 /users/kageurufu/custom_rgb.c | |
parent | 392a85e1f6fefd549cd52945ab1447a2d6901484 (diff) |
remove userspace declarations
Diffstat (limited to 'users/kageurufu/custom_rgb.c')
-rw-r--r-- | users/kageurufu/custom_rgb.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/users/kageurufu/custom_rgb.c b/users/kageurufu/custom_rgb.c deleted file mode 100644 index 8e99129b0b..0000000000 --- a/users/kageurufu/custom_rgb.c +++ /dev/null @@ -1,18 +0,0 @@ -#include "custom_rgb.h" - -#if defined(RGBLIGHT_ENABLE) - extern rgblight_config_t rgblight_config; - rgblight_config_t _pushed_rgblight_config; - #define push_rgb_config() { if (_pushed_rgblight_config.raw == 0) { _pushed_rgblight_config.raw = rgblight_config.raw; } } - #define pop_rgb_config() { if (_pushed_rgblight_config.raw == 0) { rgblight_config.raw = _pushed_rgblight_config.raw; _pushed_rgblight_config.raw = 0; } } -#elif defined(RGB_MATRIX_ENABLE) - extern rgb_config_t rgb_matrix_config; - rgb_config_t _pushed_rgb_matrix_config; - #define push_rgb_config() _pushed_rgb_matrix_config.raw = rgb_matrix_config.raw - #define pop_rgb_config() rgb_matrix_config.raw = _pushed_rgb_matrix_config.raw -#endif - - -bool process_record_rgb(uint16_t keycode, keyrecord_t *record) { - return true; -} |