mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 03:20:00 +03:00
Simplified Local Build using Permanent Config (#12341)
This commit is contained in:
parent
561d0ef996
commit
693f55dcff
355 changed files with 13201 additions and 25 deletions
20
DEFAULT_LICENCE.md
Normal file
20
DEFAULT_LICENCE.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
61
Makefile
61
Makefile
|
@ -16,8 +16,9 @@
|
|||
#
|
||||
|
||||
# The target to build, see BASE_TARGETS below
|
||||
TARGET ?= STM32F405
|
||||
BOARD ?=
|
||||
DEFAULT_TARGET ?= STM32F405
|
||||
TARGET ?=
|
||||
CONFIG ?=
|
||||
|
||||
# Compile-time options
|
||||
OPTIONS ?=
|
||||
|
@ -80,8 +81,9 @@ include $(ROOT)/make/system-id.mk
|
|||
include $(ROOT)/make/checks.mk
|
||||
|
||||
# configure some directories that are relative to wherever ROOT_DIR is located
|
||||
TOOLS_DIR ?= $(ROOT)/tools
|
||||
DL_DIR := $(ROOT)/downloads
|
||||
TOOLS_DIR ?= $(ROOT)/tools
|
||||
DL_DIR := $(ROOT)/downloads
|
||||
CONFIG_DIR ?= $(ROOT)/src/config
|
||||
|
||||
export RM := rm
|
||||
|
||||
|
@ -94,11 +96,37 @@ include $(ROOT)/make/tools.mk
|
|||
# default xtal value for F4 targets
|
||||
HSE_VALUE ?= 8000000
|
||||
|
||||
ifneq ($(BOARD),)
|
||||
# silently ignore if the file is not present. Allows for target defaults.
|
||||
-include $(ROOT)/src/main/board/$(BOARD)/board.mk
|
||||
# Search path for sources
|
||||
VPATH := $(SRC_DIR):$(SRC_DIR)/startup
|
||||
FATFS_DIR = $(ROOT)/lib/main/FatFS
|
||||
FATFS_SRC = $(notdir $(wildcard $(FATFS_DIR)/*.c))
|
||||
CSOURCES := $(shell find $(SRC_DIR) -name '*.c')
|
||||
|
||||
ifneq ($(CONFIG),)
|
||||
|
||||
ifneq ($(TARGET),)
|
||||
$(error TARGET or CONFIG should be specified. Not both.)
|
||||
endif
|
||||
|
||||
INCLUDE_DIRS += $(CONFIG_DIR)/$(CONFIG)
|
||||
CONFIG_FILE := $(CONFIG_DIR)/$(CONFIG)/config.h
|
||||
|
||||
ifeq ($(wildcard $(CONFIG_FILE)),)
|
||||
$(error Config file not found: $(CONFIG_FILE))
|
||||
endif
|
||||
|
||||
TARGET := $(shell grep " FC_TARGET_MCU" $(CONFIG_FILE) | awk '{print $$3}' )
|
||||
|
||||
ifeq ($(TARGET),)
|
||||
$(error No TARGET identified. Is the config.h valid for $(CONFIG)?)
|
||||
endif
|
||||
|
||||
else
|
||||
ifeq ($(TARGET),)
|
||||
TARGET := $(DEFAULT_TARGET)
|
||||
endif
|
||||
endif #CONFIG
|
||||
|
||||
BASE_TARGETS = $(sort $(notdir $(patsubst %/,%,$(dir $(wildcard $(ROOT)/src/main/target/*/target.mk)))))
|
||||
CI_TARGETS := $(BASE_TARGETS)
|
||||
include $(ROOT)/src/main/target/$(TARGET)/target.mk
|
||||
|
@ -114,13 +142,6 @@ FC_VER_PATCH := $(shell grep " FC_VERSION_PATCH" src/main/build/version.h | awk
|
|||
|
||||
FC_VER := $(FC_VER_MAJOR).$(FC_VER_MINOR).$(FC_VER_PATCH)
|
||||
|
||||
# Search path for sources
|
||||
VPATH := $(SRC_DIR):$(SRC_DIR)/startup
|
||||
FATFS_DIR = $(ROOT)/lib/main/FatFS
|
||||
FATFS_SRC = $(notdir $(wildcard $(FATFS_DIR)/*.c))
|
||||
|
||||
CSOURCES := $(shell find $(SRC_DIR) -name '*.c')
|
||||
|
||||
LD_FLAGS :=
|
||||
EXTRA_LD_FLAGS :=
|
||||
|
||||
|
@ -157,6 +178,11 @@ $(error No TARGET_MCU_FAMILY specified. Is the target.mk valid for $(TARGET)?)
|
|||
endif
|
||||
|
||||
TARGET_FLAGS := -D$(TARGET) -D$(TARGET_MCU_FAMILY) $(TARGET_FLAGS)
|
||||
|
||||
ifneq ($(CONFIG),)
|
||||
TARGET_FLAGS := $(TARGET_FLAGS) -DUSE_CONFIG
|
||||
endif
|
||||
|
||||
include $(ROOT)/make/mcu/$(TARGET_MCU_FAMILY).mk
|
||||
|
||||
# openocd specific includes
|
||||
|
@ -291,8 +317,11 @@ CPPCHECK = cppcheck $(CSOURCES) --enable=all --platform=unix64 \
|
|||
$(addprefix -I,$(INCLUDE_DIRS)) \
|
||||
-I/usr/include -I/usr/include/linux
|
||||
|
||||
ifneq ($(CONFIG),)
|
||||
TARGET_BASENAME = $(BIN_DIR)/$(FORKNAME)_$(FC_VER)_$(TARGET)_$(CONFIG)
|
||||
else
|
||||
TARGET_BASENAME = $(BIN_DIR)/$(FORKNAME)_$(FC_VER)_$(TARGET)
|
||||
|
||||
endif
|
||||
#
|
||||
# Things we will build
|
||||
#
|
||||
|
@ -633,7 +662,7 @@ $(TARGET_EF_HASH_FILE):
|
|||
$(V1) touch $(TARGET_EF_HASH_FILE)
|
||||
|
||||
# rebuild everything when makefile changes or the extra flags have changed
|
||||
$(TARGET_OBJS): $(TARGET_EF_HASH_FILE) Makefile $(TARGET_DIR)/target.mk $(wildcard make/*)
|
||||
$(TARGET_OBJS): $(TARGET_EF_HASH_FILE) Makefile $(TARGET_DIR)/target.mk $(wildcard make/*) $(CONFIG_FILE)
|
||||
|
||||
# include auto-generated dependencies
|
||||
-include $(TARGET_DEPS)
|
||||
|
|
|
@ -237,7 +237,7 @@ FLASH_SRC += \
|
|||
drivers/flash_w25q128fv.c \
|
||||
drivers/flash_w25m.c \
|
||||
io/flashfs.c
|
||||
|
||||
|
||||
SDCARD_SRC += \
|
||||
drivers/sdcard.c \
|
||||
drivers/sdcard_spi.c \
|
||||
|
@ -459,12 +459,6 @@ SRC += $(VCP_SRC)
|
|||
|
||||
# end target specific make file checks
|
||||
|
||||
ifneq ($(BOARD),)
|
||||
SRC += board/$(BOARD)/board.c
|
||||
INCLUDE_DIRS += $(ROOT)/src/main/board/$(BOARD)
|
||||
TARGET_FLAGS := -D'__BOARD__="$(BOARD)"' $(TARGET_FLAGS)
|
||||
endif
|
||||
|
||||
# Search path and source files for the ST stdperiph library
|
||||
VPATH := $(VPATH):$(STDPERIPH_DIR)/src
|
||||
|
||||
|
|
38
src/config/AG3XF4/config.h
Normal file
38
src/config/AG3XF4/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AG3XF4
|
||||
#define MANUFACTURER_ID AIRB
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_MAX7456
|
38
src/config/AG3XF7/config.h
Normal file
38
src/config/AG3XF7/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AG3XF7
|
||||
#define MANUFACTURER_ID AIRB
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_MAX7456
|
41
src/config/AIKONF4/config.h
Normal file
41
src/config/AIKONF4/config.h
Normal file
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AIKONF4
|
||||
#define MANUFACTURER_ID AIKO
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_ACC_SPI_ICM20602
|
||||
#define USE_GYRO_SPI_ICM20602
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
39
src/config/AIKONF7/config.h
Normal file
39
src/config/AIKONF7/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AIKONF7
|
||||
#define MANUFACTURER_ID AIKO
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_SPI_BMP280
|
||||
#define USE_BARO_SPI_DPS310
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
43
src/config/AIRBOTF4/config.h
Normal file
43
src/config/AIRBOTF4/config.h
Normal file
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AIRBOTF4
|
||||
#define MANUFACTURER_ID AIRB
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_BARO_SPI_BMP280
|
||||
#define USE_MAX7456
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_BARO_BMP085
|
||||
#define USE_BARO_MS5611
|
43
src/config/AIRBOTF4SD/config.h
Normal file
43
src/config/AIRBOTF4SD/config.h
Normal file
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AIRBOTF4SD
|
||||
#define MANUFACTURER_ID AIRB
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_BARO_SPI_BMP280
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_BARO_BMP085
|
||||
#define USE_BARO_MS5611
|
||||
#define USE_BARO_SPI_BMP280
|
36
src/config/AIRBOTF4V2/config.h
Normal file
36
src/config/AIRBOTF4V2/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AIRBOTF4V2
|
||||
#define MANUFACTURER_ID AIRB
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
37
src/config/AIRBOTF7/config.h
Normal file
37
src/config/AIRBOTF7/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AIRBOTF7
|
||||
#define MANUFACTURER_ID AIRB
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
35
src/config/AIRBOTF7HDV/config.h
Normal file
35
src/config/AIRBOTF7HDV/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AIRBOTF7HDV
|
||||
#define MANUFACTURER_ID AIRB
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_FLASH_M25P16
|
37
src/config/AIRF7/config.h
Normal file
37
src/config/AIRF7/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AIRF7
|
||||
#define MANUFACTURER_ID RAST
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
39
src/config/ALIENFLIGHTF4/config.h
Normal file
39
src/config/ALIENFLIGHTF4/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME ALIENFLIGHTF4
|
||||
#define MANUFACTURER_ID AFNG
|
||||
|
||||
#define USE_GYRO_SPI_MPU9250
|
||||
#define USE_ACC_SPI_MPU9250
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_MAG_SPI_AK8963
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
44
src/config/ALIENFLIGHTNGF7/config.h
Normal file
44
src/config/ALIENFLIGHTNGF7/config.h
Normal file
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ALIENFLIGHTNGF7
|
||||
#define MANUFACTURER_ID AFNG
|
||||
|
||||
#define USE_GYRO_SPI_MPU9250
|
||||
#define USE_ACC_SPI_MPU9250
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_ICM20602
|
||||
#define USE_ACC_SPI_ICM20602
|
||||
#define USE_BARO_SPI_BMP280
|
||||
#define USE_MAG_MPU925X_AK8963
|
||||
#define USE_MAG_SPI_AK8963
|
||||
#define USE_MAX7456
|
||||
#define USE_FLASH_W25N01G
|
||||
#define USE_SDCARD
|
38
src/config/ALIENFLIGHTNGF7_DUAL/config.h
Normal file
38
src/config/ALIENFLIGHTNGF7_DUAL/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ALIENFLIGHTNGF7_DUAL
|
||||
#define MANUFACTURER_ID AFNG
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_ICM20602
|
||||
#define USE_ACC_SPI_ICM20602
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
45
src/config/ALIENFLIGHTNGF7_ELRS/config.h
Normal file
45
src/config/ALIENFLIGHTNGF7_ELRS/config.h
Normal file
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ALIENFLIGHTNGF7_ELRS
|
||||
#define MANUFACTURER_ID AFNG
|
||||
|
||||
#define USE_GYRO_SPI_MPU9250
|
||||
#define USE_ACC_SPI_MPU9250
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_ICM20602
|
||||
#define USE_ACC_SPI_ICM20602
|
||||
#define USE_MAG_SPI_AK8963
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
||||
#define USE_RX_EXPRESSLRS
|
||||
#define USE_RX_EXPRESSLRS_TELEMETRY
|
||||
#define USE_RX_SX1280
|
||||
#define RX_CHANNELS_AETR
|
42
src/config/ALIENFLIGHTNGF7_RX/config.h
Normal file
42
src/config/ALIENFLIGHTNGF7_RX/config.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ALIENFLIGHTNGF7_RX
|
||||
#define MANUFACTURER_ID AFNG
|
||||
|
||||
#define USE_GYRO_SPI_MPU9250
|
||||
#define USE_ACC_SPI_MPU9250
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_ICM20602
|
||||
#define USE_ACC_SPI_ICM20602
|
||||
#define USE_MAG_SPI_AK8963
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
||||
#define USE_RX_CC2500
|
35
src/config/ALIENWHOOPF4/config.h
Normal file
35
src/config/ALIENWHOOPF4/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME ALIENWHOOPF4
|
||||
#define MANUFACTURER_ID ALWH
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_MAX7456
|
37
src/config/ANYFCF7/config.h
Normal file
37
src/config/ANYFCF7/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F745
|
||||
|
||||
#define BOARD_NAME ANYFCF7
|
||||
#define MANUFACTURER_ID FOSS
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_BARO_MS5611
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
36
src/config/ANYFCM7/config.h
Normal file
36
src/config/ANYFCM7/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ANYFCM7
|
||||
#define MANUFACTURER_ID FOSS
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_BARO_MS5611
|
||||
#define USE_MAX7456
|
36
src/config/AOCODAF405/config.h
Normal file
36
src/config/AOCODAF405/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AOCODAF405
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
37
src/config/AOCODAF405V2MPU6000/config.h
Normal file
37
src/config/AOCODAF405V2MPU6000/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AOCODAF405V2MPU6000
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
37
src/config/AOCODAF405V2MPU6500/config.h
Normal file
37
src/config/AOCODAF405V2MPU6500/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME AOCODAF405V2MPU6500
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
36
src/config/AOCODAF722BLE/config.h
Normal file
36
src/config/AOCODAF722BLE/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AOCODAF722BLE
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
37
src/config/AOCODAF722MINI/config.h
Normal file
37
src/config/AOCODAF722MINI/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AOCODAF722MINI
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
||||
#define USE_BARO_BMP280
|
36
src/config/AOCODARCF411_AIO/config.h
Normal file
36
src/config/AOCODARCF411_AIO/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME AOCODARCF411_AIO
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_MAX7456
|
37
src/config/AOCODARCF7DUAL/config.h
Normal file
37
src/config/AOCODARCF7DUAL/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AOCODARCF7DUAL
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
36
src/config/AOCODARCH7DUAL/config.h
Normal file
36
src/config/AOCODARCH7DUAL/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32H743
|
||||
|
||||
#define BOARD_NAME AOCODARCH7DUAL
|
||||
#define MANUFACTURER_ID SJET
|
||||
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_FLASH_W25N01G
|
||||
#define USE_MAX7456
|
37
src/config/APEXF7/config.h
Normal file
37
src/config/APEXF7/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME APEXF7
|
||||
#define MANUFACTURER_ID APEX
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_MAX7456
|
36
src/config/ARESF7/config.h
Normal file
36
src/config/ARESF7/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ARESF7
|
||||
#define MANUFACTURER_ID RCTI
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_FLASH_W25N01G
|
||||
#define USE_MAX7456
|
36
src/config/ATOMRCF405/config.h
Normal file
36
src/config/ATOMRCF405/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME ATOMRCF405
|
||||
#define MANUFACTURER_ID SKZO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
35
src/config/ATOMRCF411/config.h
Normal file
35
src/config/ATOMRCF411/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME ATOMRCF411
|
||||
#define MANUFACTURER_ID SKZO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
36
src/config/ATOMRCF722/config.h
Normal file
36
src/config/ATOMRCF722/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ATOMRCF722
|
||||
#define MANUFACTURER_ID SKZO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
39
src/config/AXISFLYINGF7/config.h
Normal file
39
src/config/AXISFLYINGF7/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AXISFLYINGF7
|
||||
#define MANUFACTURER_ID AXFL
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_BARO_QMP6988
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
36
src/config/AXISFLYINGF7PRO/config.h
Normal file
36
src/config/AXISFLYINGF7PRO/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME AXISFLYINGF7PRO
|
||||
#define MANUFACTURER_ID AXFL
|
||||
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
36
src/config/BEEROTORF4/config.h
Normal file
36
src/config/BEEROTORF4/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME BEEROTORF4
|
||||
#define MANUFACTURER_ID RCTI
|
||||
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
36
src/config/BETAFLIGHTF4/config.h
Normal file
36
src/config/BETAFLIGHTF4/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME BETAFLIGHTF4
|
||||
#define MANUFACTURER_ID FPVM
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
38
src/config/BETAFPVF405/config.h
Normal file
38
src/config/BETAFPVF405/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME BETAFPVF405
|
||||
#define MANUFACTURER_ID BEFH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_MAX7456
|
37
src/config/BETAFPVF411/config.h
Normal file
37
src/config/BETAFPVF411/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME BETAFPVF411
|
||||
#define MANUFACTURER_ID BEFH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
40
src/config/BETAFPVF411RX/config.h
Normal file
40
src/config/BETAFPVF411RX/config.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME BETAFPVF411RX
|
||||
#define MANUFACTURER_ID BEFH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_RX_CC2500
|
||||
#define USE_MAX7456
|
||||
#define USE_FLASH_W25Q128FV
|
42
src/config/BETAFPVF4SX1280/config.h
Normal file
42
src/config/BETAFPVF4SX1280/config.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME BETAFPVF4SX1280
|
||||
#define MANUFACTURER_ID BEFH
|
||||
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_MAX7456
|
||||
#define USE_RX_EXPRESSLRS
|
||||
#define USE_RX_EXPRESSLRS_TELEMETRY
|
||||
#define USE_RX_SX1280
|
||||
#define RX_CHANNELS_AETR
|
38
src/config/BETAFPVF722/config.h
Normal file
38
src/config/BETAFPVF722/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME BETAFPVF722
|
||||
#define MANUFACTURER_ID BEFH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_MAX7456
|
37
src/config/BETAFPVH743/config.h
Normal file
37
src/config/BETAFPVH743/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32H743
|
||||
|
||||
#define BOARD_NAME BETAFPVH743
|
||||
#define MANUFACTURER_ID BEFH
|
||||
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
40
src/config/BLADE_F7/config.h
Normal file
40
src/config/BLADE_F7/config.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME BLADE_F7
|
||||
#define MANUFACTURER_ID RUSH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
41
src/config/BLADE_F7_HD/config.h
Normal file
41
src/config/BLADE_F7_HD/config.h
Normal file
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME BLADE_F7_HD
|
||||
#define MANUFACTURER_ID RUSH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_BARO_QMP6988
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
35
src/config/BLUEJAYF4/config.h
Normal file
35
src/config/BLUEJAYF4/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME BLUEJAYF4
|
||||
#define MANUFACTURER_ID BKMN
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_FLASH_W25P16
|
38
src/config/CLRACINGF4/config.h
Normal file
38
src/config/CLRACINGF4/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME CLRACINGF4
|
||||
#define MANUFACTURER_ID CLRA
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
39
src/config/CLRACINGF7/config.h
Normal file
39
src/config/CLRACINGF7/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME CLRACINGF7
|
||||
#define MANUFACTURER_ID CLRA
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_FLASH_W25N01G
|
||||
#define USE_MAX7456
|
36
src/config/COLIBRI/config.h
Normal file
36
src/config/COLIBRI/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME COLIBRI
|
||||
#define MANUFACTURER_ID TEBS
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_BARO_MS5611
|
||||
#define USE_FLASH_M25P16
|
37
src/config/CRAZYBEEF4DX/config.h
Normal file
37
src/config/CRAZYBEEF4DX/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME CRAZYBEEF4DX
|
||||
#define MANUFACTURER_ID HAMO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_MAX7456
|
35
src/config/CRAZYBEEF4DXS/config.h
Normal file
35
src/config/CRAZYBEEF4DXS/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME CRAZYBEEF4DXS
|
||||
#define MANUFACTURER_ID HAMO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
41
src/config/CRAZYBEEF4FR/config.h
Normal file
41
src/config/CRAZYBEEF4FR/config.h
Normal file
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME CRAZYBEEF4FR
|
||||
#define MANUFACTURER_ID HAMO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_RX_CC2500
|
||||
#define USE_MAX7456
|
36
src/config/CRAZYBEEF4FS/config.h
Normal file
36
src/config/CRAZYBEEF4FS/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME CRAZYBEEF4FS
|
||||
#define MANUFACTURER_ID HAMO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_RX_CC2500
|
||||
#define USE_MAX7456
|
46
src/config/CRAZYBEEF4SX1280/config.h
Normal file
46
src/config/CRAZYBEEF4SX1280/config.h
Normal file
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME CRAZYBEEF4SX1280
|
||||
#define MANUFACTURER_ID HAMO
|
||||
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_MAX7456
|
||||
#define USE_RX_SPI
|
||||
#define USE_RX_EXPRESSLRS
|
||||
#define USE_RX_EXPRESSLRS_TELEMETRY
|
||||
#define USE_RX_SX1280
|
||||
#define RX_CHANNELS_AETR
|
||||
#define USE_FLASH_W25Q128FV
|
32
src/config/CYCLONEF405_PRO/config.h
Normal file
32
src/config/CYCLONEF405_PRO/config.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME CYCLONEF405_PRO
|
||||
#define MANUFACTURER_ID CYCL
|
||||
|
38
src/config/CYCLONEF722_PRO/config.h
Normal file
38
src/config/CYCLONEF722_PRO/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME CYCLONEF722_PRO
|
||||
#define MANUFACTURER_ID CYCL
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_FLASH_W25P16
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
38
src/config/DAKEFPVF405/config.h
Normal file
38
src/config/DAKEFPVF405/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME DAKEFPVF405
|
||||
#define MANUFACTURER_ID DAKE
|
||||
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_SPI_BMP280
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
38
src/config/DAKEFPVF411/config.h
Normal file
38
src/config/DAKEFPVF411/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME DAKEFPVF411
|
||||
#define MANUFACTURER_ID DAKE
|
||||
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_SPI_BMP280
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
38
src/config/DAKEFPVF722/config.h
Normal file
38
src/config/DAKEFPVF722/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME DAKEFPVF722
|
||||
#define MANUFACTURER_ID DAKE
|
||||
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_SPI_BMP280
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
38
src/config/DALRCF405/config.h
Normal file
38
src/config/DALRCF405/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME DALRCF405
|
||||
#define MANUFACTURER_ID DALR
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
38
src/config/DALRCF722DUAL/config.h
Normal file
38
src/config/DALRCF722DUAL/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME DALRCF722DUAL
|
||||
#define MANUFACTURER_ID DALR
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_BARO_MS5611
|
||||
#define USE_MAX7456
|
40
src/config/DARWINF411/config.h
Normal file
40
src/config/DARWINF411/config.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME DARWINF411
|
||||
#define MANUFACTURER_ID DAFP
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
49
src/config/DARWINF4SX1280HD/config.h
Normal file
49
src/config/DARWINF4SX1280HD/config.h
Normal file
|
@ -0,0 +1,49 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME DARWINF4SX1280HD
|
||||
#define MANUFACTURER_ID DAFP
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACCGYRO_LSM6DSO
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_GYRO_SPI_ICM42605
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42605
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_RX_EXPRESSLRS
|
||||
#define USE_RX_EXPRESSLRS_TELEMETRY
|
||||
#define USE_RX_SX1280
|
||||
#define RX_CHANNELS_AETR
|
||||
#define USE_MAX7456
|
37
src/config/DARWINF722HD/config.h
Normal file
37
src/config/DARWINF722HD/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME DARWINF722HD
|
||||
#define MANUFACTURER_ID DAFP
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
32
src/config/DFR_F722_DUAL_HD/config.h
Normal file
32
src/config/DFR_F722_DUAL_HD/config.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME DFR_F722_DUAL_HD
|
||||
#define MANUFACTURER_ID DFRA
|
||||
|
32
src/config/DRONIUSF7/config.h
Normal file
32
src/config/DRONIUSF7/config.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME DRONIUSF7
|
||||
#define MANUFACTURER_ID FOSS
|
||||
|
35
src/config/DYSF44530D/config.h
Normal file
35
src/config/DYSF44530D/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME DYSF44530D
|
||||
#define MANUFACTURER_ID DYST
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_MAX7456
|
37
src/config/DYSF4PRO/config.h
Normal file
37
src/config/DYSF4PRO/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME DYSF4PRO
|
||||
#define MANUFACTURER_ID DYST
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_MAX7456
|
35
src/config/EACHINEF411_AIO/config.h
Normal file
35
src/config/EACHINEF411_AIO/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME EACHINEF411_AIO
|
||||
#define MANUFACTURER_ID EACH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
36
src/config/EACHINEF722/config.h
Normal file
36
src/config/EACHINEF722/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME EACHINEF722
|
||||
#define MANUFACTURER_ID EACH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
35
src/config/EACHINEF722_AIO/config.h
Normal file
35
src/config/EACHINEF722_AIO/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME EACHINEF722_AIO
|
||||
#define MANUFACTURER_ID EACH
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
37
src/config/ELINF405/config.h
Normal file
37
src/config/ELINF405/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME ELINF405
|
||||
#define MANUFACTURER_ID DRCL
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
35
src/config/ELINF722/config.h
Normal file
35
src/config/ELINF722/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME ELINF722
|
||||
#define MANUFACTURER_ID DRCL
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_MAX7456
|
34
src/config/ELLE0/config.h
Normal file
34
src/config/ELLE0/config.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME ELLE0
|
||||
#define MANUFACTURER_ID LEGA
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
39
src/config/EMAX_BABYHAWK_II_HD/config.h
Normal file
39
src/config/EMAX_BABYHAWK_II_HD/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME EMAX_BABYHAWK_II_HD
|
||||
#define MANUFACTURER_ID EMAX
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
39
src/config/EMAX_TINYHAWK_F411RX/config.h
Normal file
39
src/config/EMAX_TINYHAWK_F411RX/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME EMAX_TINYHAWK_F411RX
|
||||
#define MANUFACTURER_ID EMAX
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_ACCGYRO_BMI270
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_RX_CC2500
|
||||
#define USE_MAX7456
|
38
src/config/EXF722DUAL/config.h
Normal file
38
src/config/EXF722DUAL/config.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME EXF722DUAL
|
||||
#define MANUFACTURER_ID EXUA
|
||||
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_FLASH_M25P16
|
||||
#define USE_MAX7456
|
37
src/config/EXUAVF4PRO/config.h
Normal file
37
src/config/EXUAVF4PRO/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME EXUAVF4PRO
|
||||
#define MANUFACTURER_ID EXUA
|
||||
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_MAX7456
|
36
src/config/F4BY/config.h
Normal file
36
src/config/F4BY/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME F4BY
|
||||
#define MANUFACTURER_ID FOSS
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_BARO_MS5611
|
||||
#define USE_SDCARD
|
36
src/config/FENIX_F405/config.h
Normal file
36
src/config/FENIX_F405/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FENIX_F405
|
||||
#define MANUFACTURER_ID FOSS
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_FLASH_W25M
|
||||
#define USE_MAX7456
|
40
src/config/FF_FORTINIF4/config.h
Normal file
40
src/config/FF_FORTINIF4/config.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FF_FORTINIF4
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
||||
#define USE_FLASH_W25Q128FV
|
39
src/config/FF_FORTINIF4_REV03/config.h
Normal file
39
src/config/FF_FORTINIF4_REV03/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FF_FORTINIF4_REV03
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
36
src/config/FF_PIKOF4/config.h
Normal file
36
src/config/FF_PIKOF4/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FF_PIKOF4
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
37
src/config/FF_PIKOF4OSD/config.h
Normal file
37
src/config/FF_PIKOF4OSD/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FF_PIKOF4OSD
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
35
src/config/FF_RACEPIT/config.h
Normal file
35
src/config/FF_RACEPIT/config.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FF_RACEPIT
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
32
src/config/FF_RACEPITF7/config.h
Normal file
32
src/config/FF_RACEPITF7/config.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME FF_RACEPITF7
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
36
src/config/FF_RACEPITF7_MINI/config.h
Normal file
36
src/config/FF_RACEPITF7_MINI/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME FF_RACEPITF7_MINI
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
36
src/config/FF_RACEPIT_MINI/config.h
Normal file
36
src/config/FF_RACEPIT_MINI/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FF_RACEPIT_MINI
|
||||
#define MANUFACTURER_ID FFPV
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
36
src/config/FISHDRONEF4/config.h
Normal file
36
src/config/FISHDRONEF4/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FISHDRONEF4
|
||||
#define MANUFACTURER_ID LEGA
|
||||
|
||||
#define USE_ACC_SPI_MPU6500
|
||||
#define USE_GYRO_SPI_MPU6500
|
||||
#define USE_MAX7456
|
||||
#define USE_SDCARD
|
32
src/config/FLOWBOX/config.h
Normal file
32
src/config/FLOWBOX/config.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME FLOWBOX
|
||||
#define MANUFACTURER_ID NERC
|
||||
|
32
src/config/FLOWBOXV2/config.h
Normal file
32
src/config/FLOWBOXV2/config.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME FLOWBOXV2
|
||||
#define MANUFACTURER_ID NERC
|
||||
|
36
src/config/FLYCOLORF7/config.h
Normal file
36
src/config/FLYCOLORF7/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME FLYCOLORF7
|
||||
#define MANUFACTURER_ID FLCO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
32
src/config/FLYCOLORF7_AIO/config.h
Normal file
32
src/config/FLYCOLORF7_AIO/config.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F7X2
|
||||
|
||||
#define BOARD_NAME FLYCOLORF7_AIO
|
||||
#define MANUFACTURER_ID FLCO
|
||||
|
37
src/config/FLYWOOF405/config.h
Normal file
37
src/config/FLYWOOF405/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FLYWOOF405
|
||||
#define MANUFACTURER_ID FLWO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_MAX7456
|
39
src/config/FLYWOOF405NANO/config.h
Normal file
39
src/config/FLYWOOF405NANO/config.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FLYWOOF405NANO
|
||||
#define MANUFACTURER_ID FLWO
|
||||
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
||||
#define USE_BARO_BMP280
|
36
src/config/FLYWOOF405PRO/config.h
Normal file
36
src/config/FLYWOOF405PRO/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FLYWOOF405PRO
|
||||
#define MANUFACTURER_ID FLWO
|
||||
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
40
src/config/FLYWOOF405S_AIO/config.h
Normal file
40
src/config/FLYWOOF405S_AIO/config.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F405
|
||||
|
||||
#define BOARD_NAME FLYWOOF405S_AIO
|
||||
#define MANUFACTURER_ID FLWO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM42688P
|
||||
#define USE_ACC_SPI_ICM42688P
|
||||
#define USE_BARO_BMP280
|
||||
#define USE_BARO_DPS310
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
37
src/config/FLYWOOF411/config.h
Normal file
37
src/config/FLYWOOF411/config.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME FLYWOOF411
|
||||
#define MANUFACTURER_ID FLWO
|
||||
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_MAX7456
|
36
src/config/FLYWOOF411EVO_HD/config.h
Normal file
36
src/config/FLYWOOF411EVO_HD/config.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of Betaflight.
|
||||
*
|
||||
* Betaflight is free software. You can redistribute this software
|
||||
* and/or modify this software under the terms of the GNU General
|
||||
* Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* Betaflight is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/*
|
||||
This file has been auto generated from unified-targets repo.
|
||||
|
||||
The auto generation is transitional only.
|
||||
*/
|
||||
|
||||
#define FC_TARGET_MCU STM32F411
|
||||
|
||||
#define BOARD_NAME FLYWOOF411EVO_HD
|
||||
#define MANUFACTURER_ID FLWO
|
||||
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_FLASH_W25Q128FV
|
||||
#define USE_MAX7456
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue