aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/keyboard.c
diff options
context:
space:
mode:
authorstein3 <stein3@gmail.com>2020-10-06 07:15:41 -0700
committerstein3 <stein3@gmail.com>2020-10-06 07:15:41 -0700
commit2e402741a89c5eec8cf30c966ce6f36d6ec9249b (patch)
tree3592e8c5e6bd19943ae55db7fc02a5f755afbb51 /tmk_core/common/keyboard.c
parent3e5e4f74272c610bb9fa737f674f8e65ed6100ca (diff)
parent2013f6313430b977e557e482d30daa279a46e75d (diff)
downloadqmk_firmware-2e402741a89c5eec8cf30c966ce6f36d6ec9249b.tar.gz
qmk_firmware-2e402741a89c5eec8cf30c966ce6f36d6ec9249b.zip
Merge branch 'master' into meteor
Diffstat (limited to 'tmk_core/common/keyboard.c')
-rw-r--r--tmk_core/common/keyboard.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c
index 714c3d048..a45af56df 100644
--- a/tmk_core/common/keyboard.c
+++ b/tmk_core/common/keyboard.c
@@ -74,6 +74,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
74#ifdef MIDI_ENABLE 74#ifdef MIDI_ENABLE
75# include "process_midi.h" 75# include "process_midi.h"
76#endif 76#endif
77#ifdef JOYSTICK_ENABLE
78# include "process_joystick.h"
79#endif
77#ifdef HD44780_ENABLE 80#ifdef HD44780_ENABLE
78# include "hd44780.h" 81# include "hd44780.h"
79#endif 82#endif
@@ -420,6 +423,10 @@ MATRIX_LOOP_END:
420 } 423 }
421#endif 424#endif
422 425
426#ifdef JOYSTICK_ENABLE
427 joystick_task();
428#endif
429
423 // update LED 430 // update LED
424 if (led_status != host_keyboard_leds()) { 431 if (led_status != host_keyboard_leds()) {
425 led_status = host_keyboard_leds(); 432 led_status = host_keyboard_leds();