1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 15:25:36 +03:00

Cleaned up filenames to better reflect purpose

Fixed build issue following rebase
This commit is contained in:
blckmn 2016-10-14 04:40:01 +11:00
parent 4e529642d1
commit 712985a7aa
6 changed files with 7 additions and 7 deletions

View file

@ -22,7 +22,6 @@
#include "io.h"
#include "timer.h"
#include "pwm_mapping.h"
#include "pwm_output.h"
#include "nvic.h"
#include "dma.h"
@ -40,7 +39,7 @@
static uint8_t dmaMotorTimerCount = 0;
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)
{

View file

@ -31,6 +31,7 @@ const timerDef_t timerDefinitions[HARDWARE_TIMER_DEFINITION_COUNT] = {
uint8_t timerClockDivisor(TIM_TypeDef *tim)
{
UNUSED(tim);
return 1;
}

View file

@ -4,6 +4,6 @@ FEATURES += SDCARD VCP ONBOARDFLASH
TARGET_SRC = \
drivers/accgyro_spi_mpu6500.c \
drivers/accgyro_mpu6500.c \
drivers/barometer_ms5611.c
drivers/pwm_stm32f4xx.c
drivers/barometer_ms5611.c \
drivers/pwm_output_stm32f4xx.c

View file

@ -5,5 +5,5 @@ TARGET_SRC = \
drivers/accgyro_mpu.c \
drivers/display_ug2864hsweg01.c \
drivers/accgyro_mpu6050.c \
drivers/pwm_stm32f3xx.c
drivers/pwm_output_stm32f3xx.c

View file

@ -4,5 +4,5 @@ FEATURES += VCP ONBOARDFLASH
TARGET_SRC = \
drivers/accgyro_spi_mpu6000.c \
drivers/barometer_ms5611.c \
drivers/compass_hmc5883l.c
drivers/pwm_stm32f4xx.c
drivers/compass_hmc5883l.c \
drivers/pwm_output_stm32f4xx.c