1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-25 17:25:18 +03:00

Refactor TIMER/DMA framework (#3833)

* TIM/DMA abstraction
* Migrage F7 TIM/DMA to HAL_LL
* Refactor timers to use conventional HZ
* Refactor PWM ourput code to use highest possible resolution
* Remove TIMER_OUTPUT_ENABLED
* Temporary disable SPRACINGF3NEO due to out of RAM
This commit is contained in:
Konstantin Sharlaimov 2018-09-24 15:10:59 +02:00 committed by GitHub
parent 3b1b1bfc81
commit 78bc53f3ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
196 changed files with 2780 additions and 3164 deletions

View file

@ -20,6 +20,12 @@
#if defined(STM32F7)
#include "stm32f7xx.h"
#include "stm32f7xx_hal.h"
#include "stm32f7xx_ll_spi.h"
#include "stm32f7xx_ll_gpio.h"
#include "stm32f7xx_ll_dma.h"
#include "stm32f7xx_ll_rcc.h"
#include "stm32f7xx_ll_bus.h"
#include "stm32f7xx_ll_tim.h"
// Chip Unique ID on F7
#if defined(STM32F722xx)