1
0
Fork 0

Purge uGFX. (#14720)

* Purge uGFX.

* Remove remnants of visualizer.

* Remove remnants of uGFX.
This commit is contained in:
Nick Brassel 2021-10-07 10:57:48 +11:00 committed by GitHub
parent bc1f5ef381
commit b2a186cf92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
66 changed files with 2 additions and 3898 deletions

View file

@ -64,9 +64,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifdef SERIAL_LINK_ENABLE
# include "serial_link/system/serial_link.h"
#endif
#ifdef VISUALIZER_ENABLE
# include "visualizer/visualizer.h"
#endif
#ifdef POINTING_DEVICE_ENABLE
# include "pointing_device.h"
#endif
@ -381,7 +378,6 @@ void switch_events(uint8_t row, uint8_t col, bool pressed) {
*
* * scan matrix
* * handle mouse movements
* * run visualizer code
* * handle midi commands
* * light LEDs
*
@ -519,10 +515,6 @@ MATRIX_LOOP_END:
serial_link_update();
#endif
#ifdef VISUALIZER_ENABLE
visualizer_update(default_layer_state, layer_state, visualizer_get_mods(), host_keyboard_leds());
#endif
#ifdef POINTING_DEVICE_ENABLE
pointing_device_task();
#endif