mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 19:40:31 +03:00
Add missing timer header F3
This commit is contained in:
parent
16309b1a2c
commit
98e76146e8
2 changed files with 4 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -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…
Add table
Add a link
Reference in a new issue