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
|
||||||
mcu.mak.old
|
mcu.mak.old
|
||||||
|
stm32.mak
|
||||||
|
|
|
@ -24,8 +24,10 @@
|
||||||
|
|
||||||
#include "io.h"
|
#include "io.h"
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
#ifdef STM32F4
|
#if defined(STM32F4)
|
||||||
#include "timer_stm32f4xx.h"
|
#include "timer_stm32f4xx.h"
|
||||||
|
#elif defined(STM32F3)
|
||||||
|
#include "timer_stm32f30x.h"
|
||||||
#endif
|
#endif
|
||||||
#include "pwm_output.h"
|
#include "pwm_output.h"
|
||||||
#include "nvic.h"
|
#include "nvic.h"
|
||||||
|
|
Loading…
Reference in New Issue