Add missing timer header F3

This commit is contained in:
borisbstyle 2017-03-03 01:38:42 +01:00
parent 16309b1a2c
commit 98e76146e8
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -28,3 +28,4 @@ make/local.mk
mcu.mak
mcu.mak.old
stm32.mak

View File

@ -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"