Add missing timer header F3
This commit is contained in:
parent
16309b1a2c
commit
98e76146e8
|
@ -28,3 +28,4 @@ make/local.mk
|
|||
|
||||
mcu.mak
|
||||
mcu.mak.old
|
||||
stm32.mak
|
||||
|
|
|
@ -24,8 +24,10 @@
|
|||
|
||||
#include "io.h"
|
||||
#include "timer.h"
|
||||
#ifdef STM32F4
|
||||
#if defined(STM32F4)
|
||||
#include "timer_stm32f4xx.h"
|
||||
#elif defined(STM32F3)
|
||||
#include "timer_stm32f30x.h"
|
||||
#endif
|
||||
#include "pwm_output.h"
|
||||
#include "nvic.h"
|
||||
|
|
Loading…
Reference in New Issue