mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 08:15:30 +03:00
Cleaned up filenames to better reflect purpose
Fixed build issue following rebase
This commit is contained in:
parent
4e529642d1
commit
712985a7aa
6 changed files with 7 additions and 7 deletions
|
@ -22,7 +22,6 @@
|
||||||
|
|
||||||
#include "io.h"
|
#include "io.h"
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
#include "pwm_mapping.h"
|
|
||||||
#include "pwm_output.h"
|
#include "pwm_output.h"
|
||||||
#include "nvic.h"
|
#include "nvic.h"
|
||||||
#include "dma.h"
|
#include "dma.h"
|
||||||
|
@ -40,7 +39,7 @@
|
||||||
|
|
||||||
static uint8_t dmaMotorTimerCount = 0;
|
static uint8_t dmaMotorTimerCount = 0;
|
||||||
static motorDmaTimer_t dmaMotorTimers[MAX_DMA_TIMERS];
|
static motorDmaTimer_t dmaMotorTimers[MAX_DMA_TIMERS];
|
||||||
static motorDmaOutput_t dmaMotors[MAX_PWM_MOTORS];
|
static motorDmaOutput_t dmaMotors[MAX_SUPPORTED_MOTORS];
|
||||||
|
|
||||||
uint8_t getTimerIndex(TIM_TypeDef *timer)
|
uint8_t getTimerIndex(TIM_TypeDef *timer)
|
||||||
{
|
{
|
|
@ -31,6 +31,7 @@ const timerDef_t timerDefinitions[HARDWARE_TIMER_DEFINITION_COUNT] = {
|
||||||
|
|
||||||
uint8_t timerClockDivisor(TIM_TypeDef *tim)
|
uint8_t timerClockDivisor(TIM_TypeDef *tim)
|
||||||
{
|
{
|
||||||
|
UNUSED(tim);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,6 @@ FEATURES += SDCARD VCP ONBOARDFLASH
|
||||||
TARGET_SRC = \
|
TARGET_SRC = \
|
||||||
drivers/accgyro_spi_mpu6500.c \
|
drivers/accgyro_spi_mpu6500.c \
|
||||||
drivers/accgyro_mpu6500.c \
|
drivers/accgyro_mpu6500.c \
|
||||||
drivers/barometer_ms5611.c
|
drivers/barometer_ms5611.c \
|
||||||
drivers/pwm_stm32f4xx.c
|
drivers/pwm_output_stm32f4xx.c
|
||||||
|
|
||||||
|
|
|
@ -5,5 +5,5 @@ TARGET_SRC = \
|
||||||
drivers/accgyro_mpu.c \
|
drivers/accgyro_mpu.c \
|
||||||
drivers/display_ug2864hsweg01.c \
|
drivers/display_ug2864hsweg01.c \
|
||||||
drivers/accgyro_mpu6050.c \
|
drivers/accgyro_mpu6050.c \
|
||||||
drivers/pwm_stm32f3xx.c
|
drivers/pwm_output_stm32f3xx.c
|
||||||
|
|
||||||
|
|
|
@ -4,5 +4,5 @@ FEATURES += VCP ONBOARDFLASH
|
||||||
TARGET_SRC = \
|
TARGET_SRC = \
|
||||||
drivers/accgyro_spi_mpu6000.c \
|
drivers/accgyro_spi_mpu6000.c \
|
||||||
drivers/barometer_ms5611.c \
|
drivers/barometer_ms5611.c \
|
||||||
drivers/compass_hmc5883l.c
|
drivers/compass_hmc5883l.c \
|
||||||
drivers/pwm_stm32f4xx.c
|
drivers/pwm_output_stm32f4xx.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue