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.c | |
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.c')
-rw-r--r-- | quantum/visualizer/visualizer.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/quantum/visualizer/visualizer.c b/quantum/visualizer/visualizer.c index 5fbd12031..2479a64c7 100644 --- a/quantum/visualizer/visualizer.c +++ b/quantum/visualizer/visualizer.c | |||
@@ -230,12 +230,6 @@ void run_next_keyframe(keyframe_animation_t* animation, visualizer_state_t* stat | |||
230 | (*temp_animation.frame_functions[next_frame])(&temp_animation, &temp_state); | 230 | (*temp_animation.frame_functions[next_frame])(&temp_animation, &temp_state); |
231 | } | 231 | } |
232 | 232 | ||
233 | bool keyframe_no_operation(keyframe_animation_t* animation, visualizer_state_t* state) { | ||
234 | (void)animation; | ||
235 | (void)state; | ||
236 | return false; | ||
237 | } | ||
238 | |||
239 | // TODO: Optimize the stack size, this is probably way too big | 233 | // TODO: Optimize the stack size, this is probably way too big |
240 | static DECLARE_THREAD_STACK(visualizerThreadStack, 1024); | 234 | static DECLARE_THREAD_STACK(visualizerThreadStack, 1024); |
241 | static DECLARE_THREAD_FUNCTION(visualizerThread, arg) { | 235 | static DECLARE_THREAD_FUNCTION(visualizerThread, arg) { |