diff options
author | James Young <xxiinophobia@yahoo.com> | 2020-02-29 12:00:00 -0800 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-06-12 17:00:27 +0900 |
commit | f01c45ef54039366b666c28747fd57136d81c472 (patch) | |
tree | a09c6a4e1f7f1b447fc508f4ca542d2640443e71 /quantum/serial_link | |
parent | ae8641748e4b2adb5b4f091027975e3884e325c9 (diff) |
2020 February 29 Breaking Changes Update (#8064)
Diffstat (limited to 'quantum/serial_link')
-rw-r--r-- | quantum/serial_link/system/serial_link.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/serial_link/system/serial_link.c b/quantum/serial_link/system/serial_link.c index feac64e297..c59c068944 100644 --- a/quantum/serial_link/system/serial_link.c +++ b/quantum/serial_link/system/serial_link.c @@ -119,7 +119,7 @@ static THD_FUNCTION(serialThread, arg) { eventflags_t flags1 = 0; eventflags_t flags2 = 0; if (need_wait) { - eventmask_t mask = chEvtWaitAnyTimeout(ALL_EVENTS, MS2ST(1000)); + eventmask_t mask = chEvtWaitAnyTimeout(ALL_EVENTS, TIME_MS2I(1000)); if (mask & EVENT_MASK(1)) { flags1 = chEvtGetAndClearFlags(&sd1_listener); print_error("DOWNLINK", flags1, &SD1); @@ -192,7 +192,7 @@ void serial_link_update(void) { systime_t current_time = chVTGetSystemTimeX(); systime_t delta = current_time - last_update; - if (changed || delta > US2ST(5000)) { + if (changed || delta > TIME_US2I(5000)) { last_update = current_time; last_matrix = matrix; matrix_object_t* m = begin_write_keyboard_matrix(); |