diff options
author | XScorpion2 <rcalt2vt@gmail.com> | 2021-02-15 18:30:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 11:30:33 +1100 |
commit | d1806a26e4ad75fa0e0405283803eba22c1a49ba (patch) | |
tree | 25bf2750e9770781cff373114bd44736463a91f1 /quantum/quantum.c | |
parent | 1bc8a6e5d49861b268f9274a8686a2640e36e0b5 (diff) | |
download | qmk_firmware-d1806a26e4ad75fa0e0405283803eba22c1a49ba.tar.gz qmk_firmware-d1806a26e4ad75fa0e0405283803eba22c1a49ba.zip |
Split transport mirror (#11046)
* Split transport mirror support
* Updated RGB Matrix to respond to electrical events instead of key events
* split matrix slave fix
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 6d202c515..38234bb17 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
@@ -221,9 +221,6 @@ bool process_record_quantum(keyrecord_t *record) { | |||
221 | #ifdef HAPTIC_ENABLE | 221 | #ifdef HAPTIC_ENABLE |
222 | process_haptic(keycode, record) && | 222 | process_haptic(keycode, record) && |
223 | #endif // HAPTIC_ENABLE | 223 | #endif // HAPTIC_ENABLE |
224 | #if defined(RGB_MATRIX_ENABLE) | ||
225 | process_rgb_matrix(keycode, record) && | ||
226 | #endif | ||
227 | #if defined(VIA_ENABLE) | 224 | #if defined(VIA_ENABLE) |
228 | process_record_via(keycode, record) && | 225 | process_record_via(keycode, record) && |
229 | #endif | 226 | #endif |
@@ -624,9 +621,6 @@ void matrix_init_quantum() { | |||
624 | #ifdef AUDIO_ENABLE | 621 | #ifdef AUDIO_ENABLE |
625 | audio_init(); | 622 | audio_init(); |
626 | #endif | 623 | #endif |
627 | #ifdef RGB_MATRIX_ENABLE | ||
628 | rgb_matrix_init(); | ||
629 | #endif | ||
630 | #if defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE) | 624 | #if defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE) |
631 | unicode_input_mode_init(); | 625 | unicode_input_mode_init(); |
632 | #endif | 626 | #endif |
@@ -681,10 +675,6 @@ void matrix_scan_quantum() { | |||
681 | led_matrix_task(); | 675 | led_matrix_task(); |
682 | #endif | 676 | #endif |
683 | 677 | ||
684 | #ifdef RGB_MATRIX_ENABLE | ||
685 | rgb_matrix_task(); | ||
686 | #endif | ||
687 | |||
688 | #ifdef WPM_ENABLE | 678 | #ifdef WPM_ENABLE |
689 | decay_wpm(); | 679 | decay_wpm(); |
690 | #endif | 680 | #endif |