mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-28 11:47:32 +06:00
f02e355380
* add bold and blackboard bold glyph transformations * trim firmware size; cformat * fix typo in macro * trim firmware size a bit more
23 lines
417 B
C
23 lines
417 B
C
#include "spidey3.h"
|
|
|
|
void keyboard_post_init_user(void) {
|
|
#ifdef RGBLIGHT_ENABLE
|
|
keyboard_post_init_user_rgb();
|
|
#endif
|
|
}
|
|
|
|
void eeconfig_init_user(void) {
|
|
set_single_persistent_default_layer(_BASE);
|
|
#ifdef UNICODEMAP_ENABLE
|
|
eeconfig_init_user_unicode();
|
|
#endif
|
|
|
|
#ifdef RGBLIGHT_ENABLE
|
|
eeconfig_init_user_rgb();
|
|
#endif
|
|
}
|
|
|
|
#ifdef RGBLIGHT_ENABLE
|
|
void shutdown_user(void) { shutdown_user_rgb(); }
|
|
#endif
|