aboutsummaryrefslogtreecommitdiff
path: root/quantum/keyboard.c
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-10-07 10:57:48 +1100
committerGitHub <noreply@github.com>2021-10-07 10:57:48 +1100
commitb2a186cf92d91bbb7f98fff68c4edf571909bf89 (patch)
treec58eca68f1ca0797b8080c32be3d14b10abd286a /quantum/keyboard.c
parentbc1f5ef38172bc77a802fb779e5da60f800c231b (diff)
downloadqmk_firmware-b2a186cf92d91bbb7f98fff68c4edf571909bf89.tar.gz
qmk_firmware-b2a186cf92d91bbb7f98fff68c4edf571909bf89.zip
Purge uGFX. (#14720)
* Purge uGFX. * Remove remnants of visualizer. * Remove remnants of uGFX.
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r--quantum/keyboard.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c
index 6054faa03..c2e2234f9 100644
--- a/quantum/keyboard.c
+++ b/quantum/keyboard.c
@@ -64,9 +64,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
64#ifdef SERIAL_LINK_ENABLE 64#ifdef SERIAL_LINK_ENABLE
65# include "serial_link/system/serial_link.h" 65# include "serial_link/system/serial_link.h"
66#endif 66#endif
67#ifdef VISUALIZER_ENABLE
68# include "visualizer/visualizer.h"
69#endif
70#ifdef POINTING_DEVICE_ENABLE 67#ifdef POINTING_DEVICE_ENABLE
71# include "pointing_device.h" 68# include "pointing_device.h"
72#endif 69#endif
@@ -381,7 +378,6 @@ void switch_events(uint8_t row, uint8_t col, bool pressed) {
381 * 378 *
382 * * scan matrix 379 * * scan matrix
383 * * handle mouse movements 380 * * handle mouse movements
384 * * run visualizer code
385 * * handle midi commands 381 * * handle midi commands
386 * * light LEDs 382 * * light LEDs
387 * 383 *
@@ -519,10 +515,6 @@ MATRIX_LOOP_END:
519 serial_link_update(); 515 serial_link_update();
520#endif 516#endif
521 517
522#ifdef VISUALIZER_ENABLE
523 visualizer_update(default_layer_state, layer_state, visualizer_get_mods(), host_keyboard_leds());
524#endif
525
526#ifdef POINTING_DEVICE_ENABLE 518#ifdef POINTING_DEVICE_ENABLE
527 pointing_device_task(); 519 pointing_device_task();
528#endif 520#endif