1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 08:15:30 +03:00

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

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"