boards/stm32f0discovery: Update to match timer_init API change

This commit is contained in:
Joakim Nohlgård 2015-10-04 00:26:23 +02:00
parent d9697ede5f
commit 9a7ec18ac8

View File

@ -45,7 +45,7 @@ extern "C" {
/* Timer 0 configuration */ /* Timer 0 configuration */
#define TIMER_0_DEV TIM2 #define TIMER_0_DEV TIM2
#define TIMER_0_CHANNELS 4 #define TIMER_0_CHANNELS 4
#define TIMER_0_PRESCALER (47U) #define TIMER_0_FREQ (CLOCK_CORECLOCK)
#define TIMER_0_MAX_VALUE (0xffffffff) #define TIMER_0_MAX_VALUE (0xffffffff)
#define TIMER_0_CLKEN() (RCC->APB1ENR |= RCC_APB1ENR_TIM2EN) #define TIMER_0_CLKEN() (RCC->APB1ENR |= RCC_APB1ENR_TIM2EN)
#define TIMER_0_ISR isr_tim2 #define TIMER_0_ISR isr_tim2