diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-06 15:22:34 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-06 16:06:53 +0300 |
commit | 4b45deb652045aac73e5fdd7412a73bcef19c0c8 (patch) | |
tree | d9e7528b3b184c27a92f14aa3e9ce84cb45e0c00 /tmk_core/common/keyboard.c | |
parent | a7e3e4e652a2b9f172282f3876d74ee247a63105 (diff) | |
download | firmware-4b45deb652045aac73e5fdd7412a73bcef19c0c8.tar.gz firmware-4b45deb652045aac73e5fdd7412a73bcef19c0c8.tar.bz2 firmware-4b45deb652045aac73e5fdd7412a73bcef19c0c8.zip |
Enable serial_link support for ChibiOS
Diffstat (limited to 'tmk_core/common/keyboard.c')
-rw-r--r-- | tmk_core/common/keyboard.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index 81df8eb73..3a1262a9f 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -49,6 +49,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef RGBLIGHT_ENABLE # include "rgblight.h" #endif +#ifdef SERIAL_LINK_ENABLE +# include "serial_link/system/serial_link.h" +#endif #ifdef MATRIX_HAS_GHOST static bool has_ghost_in_row(uint8_t row) @@ -167,11 +170,15 @@ MATRIX_LOOP_END: #endif #ifdef SERIAL_MOUSE_ENABLE - serial_mouse_task(); + serial_mouse_task(); #endif #ifdef ADB_MOUSE_ENABLE - adb_mouse_task(); + adb_mouse_task(); +#endif + +#ifdef SERIAL_LINK_ENABLE + serial_link_update(); #endif // update LED |