aboutsummaryrefslogtreecommitdiff
path: root/quantum/keyboard.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-10-07 23:14:26 +0100
committerGitHub <noreply@github.com>2021-10-07 23:14:26 +0100
commite0d688d4c8040302fcacb735350c95fe6be4dbde (patch)
tree0518f3ffea7851479c8169ba3bd9fd1d0308fa1d /quantum/keyboard.c
parentc39170b7ef433ee86230caad6263c59bb727ed5a (diff)
downloadqmk_firmware-e0d688d4c8040302fcacb735350c95fe6be4dbde.tar.gz
qmk_firmware-e0d688d4c8040302fcacb735350c95fe6be4dbde.zip
Move converter specific tmk_core protocols (#14743)
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r--quantum/keyboard.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c
index ee7fa2bd4..401abdd8f 100644
--- a/quantum/keyboard.c
+++ b/quantum/keyboard.c
@@ -43,9 +43,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
43#ifdef SERIAL_MOUSE_ENABLE 43#ifdef SERIAL_MOUSE_ENABLE
44# include "serial_mouse.h" 44# include "serial_mouse.h"
45#endif 45#endif
46#ifdef ADB_MOUSE_ENABLE
47# include "adb.h"
48#endif
49#ifdef RGBLIGHT_ENABLE 46#ifdef RGBLIGHT_ENABLE
50# include "rgblight.h" 47# include "rgblight.h"
51#endif 48#endif
@@ -322,9 +319,6 @@ void keyboard_init(void) {
322#ifdef SERIAL_MOUSE_ENABLE 319#ifdef SERIAL_MOUSE_ENABLE
323 serial_mouse_init(); 320 serial_mouse_init();
324#endif 321#endif
325#ifdef ADB_MOUSE_ENABLE
326 adb_mouse_init();
327#endif
328#ifdef BACKLIGHT_ENABLE 322#ifdef BACKLIGHT_ENABLE
329 backlight_init(); 323 backlight_init();
330#endif 324#endif
@@ -504,10 +498,6 @@ MATRIX_LOOP_END:
504 serial_mouse_task(); 498 serial_mouse_task();
505#endif 499#endif
506 500
507#ifdef ADB_MOUSE_ENABLE
508 adb_mouse_task();
509#endif
510
511#ifdef POINTING_DEVICE_ENABLE 501#ifdef POINTING_DEVICE_ENABLE
512 pointing_device_task(); 502 pointing_device_task();
513#endif 503#endif