diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2017-04-05 10:14:24 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2017-04-09 18:34:59 +0300 |
commit | b7041d06aef4dcf2f2a47504a699e538cfb1d9ac (patch) | |
tree | 7478e6a52667d312ebfb7e46d56378fa948a51b9 /quantum/visualizer/visualizer.h | |
parent | 64d63ab42281318d891434fbc00277043298dd70 (diff) | |
download | qmk_firmware-b7041d06aef4dcf2f2a47504a699e538cfb1d9ac.tar.gz qmk_firmware-b7041d06aef4dcf2f2a47504a699e538cfb1d9ac.zip |
Move common visualizer keyframes into visualizer_keyframes.h
Diffstat (limited to 'quantum/visualizer/visualizer.h')
-rw-r--r-- | quantum/visualizer/visualizer.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/quantum/visualizer/visualizer.h b/quantum/visualizer/visualizer.h index 4639348492..d6f279e101 100644 --- a/quantum/visualizer/visualizer.h +++ b/quantum/visualizer/visualizer.h @@ -34,7 +34,7 @@ SOFTWARE. #include "lcd_backlight.h" #endif -// use this function to merget both real_mods and oneshot_mods in a uint16_t +// use this function to merge both real_mods and oneshot_mods in a uint16_t uint8_t visualizer_get_mods(void); // This need to be called once at the start @@ -126,10 +126,6 @@ void stop_keyframe_animation(keyframe_animation_t* animation); // Useful for crossfades for example void run_next_keyframe(keyframe_animation_t* animation, visualizer_state_t* state); -// Some predefined keyframe functions that can be used by the user code -// Does nothing, useful for adding delays -bool keyframe_no_operation(keyframe_animation_t* animation, visualizer_state_t* state); - // The master can set userdata which will be transferred to the slave #ifdef VISUALIZER_USER_DATA_SIZE void visualizer_set_user_data(void* user_data); |