From 6cf55ac83a85dc660854d371a06cb413602356af Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Mon, 19 Aug 2019 14:44:39 -0400 Subject: [PATCH] av_x-v1 fix timer_config clock bit --- boards/av/x-v1/src/timer_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/av/x-v1/src/timer_config.c b/boards/av/x-v1/src/timer_config.c index e13e4924b7..50018efeac 100644 --- a/boards/av/x-v1/src/timer_config.c +++ b/boards/av/x-v1/src/timer_config.c @@ -74,7 +74,7 @@ __EXPORT const io_timers_t io_timers[MAX_IO_TIMERS] = { { .base = STM32_TIM8_BASE, .clock_register = STM32_RCC_APB2ENR, - .clock_bit = RCC_APB2ENR_TIM10EN, + .clock_bit = RCC_APB2ENR_TIM8EN, .clock_freq = STM32_APB2_TIM8_CLKIN, .first_channel_index = 5, .last_channel_index = 5,