Update tmk_core/common/wait.h

Co-Authored-By: Drashna Jaelre <drashna@live.com>
better_chibios_wait
skullydazed 6 years ago committed by GitHub
parent e5864cd471
commit e180496ab4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tmk_core/common/wait.h

@ -15,7 +15,7 @@ extern "C" {
# include "ch.h"
// FIXME: This doesn't compile if `NKRO_ENABLED = no`
# define wait_ms(ms) chSysPolledDelayX(MS2RTC(STM32_SYSCLK, ms))
# define wait_us(us) chSysPolledDelayX(US2RTC(STM32_SYSCLK, x))
# define wait_us(us) chSysPolledDelayX(US2RTC(STM32_SYSCLK, us))
#elif defined PROTOCOL_ARM_ATSAM
# include "clks.h"
# define wait_ms(ms) CLK_delay_ms(ms)

Loading…
Cancel
Save