aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/sync_timer.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-10-07 02:32:05 +0100
committerGitHub <noreply@github.com>2021-10-07 12:32:05 +1100
commit1c0347b8b85de03691c7810f98f38bb245783985 (patch)
treeabd0d58a1e2d5134f1c307ad392c8616cab3266a /tmk_core/common/sync_timer.c
parent60297a1099e5a310bd10a4d59fcb80bbc7fe4be5 (diff)
downloadqmk_firmware-1c0347b8b85de03691c7810f98f38bb245783985.tar.gz
qmk_firmware-1c0347b8b85de03691c7810f98f38bb245783985.zip
Remove SERIAL_LINK feature (#14727)
* Remove SERIAL_LINK * more stale paths in doxygen-todo * Fix * More refs * Update testing docs * Update doxygen-todo Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'tmk_core/common/sync_timer.c')
-rw-r--r--tmk_core/common/sync_timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/sync_timer.c b/tmk_core/common/sync_timer.c
index 68b92d8b4..de24b463b 100644
--- a/tmk_core/common/sync_timer.c
+++ b/tmk_core/common/sync_timer.c
@@ -26,7 +26,7 @@ SOFTWARE.
26#include "sync_timer.h" 26#include "sync_timer.h"
27#include "keyboard.h" 27#include "keyboard.h"
28 28
29#if (defined(SPLIT_KEYBOARD) || defined(SERIAL_LINK_ENABLE)) && !defined(DISABLE_SYNC_TIMER) 29#if defined(SPLIT_KEYBOARD) && !defined(DISABLE_SYNC_TIMER)
30volatile int32_t sync_timer_ms; 30volatile int32_t sync_timer_ms;
31 31
32void sync_timer_init(void) { sync_timer_ms = 0; } 32void sync_timer_init(void) { sync_timer_ms = 0; }