mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 03:20:00 +03:00
[4.4.2] Reverting the config.h usage. (#12779)
* Reverting the config.h usage. * Removing another remnant
This commit is contained in:
parent
e5aab6aa66
commit
d26e47ff02
356 changed files with 1 additions and 14773 deletions
48
Makefile
48
Makefile
|
@ -18,7 +18,6 @@
|
||||||
# The target to build, see VALID_TARGETS below
|
# The target to build, see VALID_TARGETS below
|
||||||
DEFAULT_TARGET ?= STM32F405
|
DEFAULT_TARGET ?= STM32F405
|
||||||
TARGET ?=
|
TARGET ?=
|
||||||
CONFIG ?=
|
|
||||||
|
|
||||||
# Compile-time options
|
# Compile-time options
|
||||||
OPTIONS ?=
|
OPTIONS ?=
|
||||||
|
@ -83,7 +82,6 @@ include $(ROOT)/make/checks.mk
|
||||||
# configure some directories that are relative to wherever ROOT_DIR is located
|
# configure some directories that are relative to wherever ROOT_DIR is located
|
||||||
TOOLS_DIR ?= $(ROOT)/tools
|
TOOLS_DIR ?= $(ROOT)/tools
|
||||||
DL_DIR := $(ROOT)/downloads
|
DL_DIR := $(ROOT)/downloads
|
||||||
CONFIG_DIR ?= $(ROOT)/src/config
|
|
||||||
|
|
||||||
export RM := rm
|
export RM := rm
|
||||||
|
|
||||||
|
@ -99,35 +97,12 @@ HSE_VALUE ?= 8000000
|
||||||
# used for turning on features like VCP and SDCARD
|
# used for turning on features like VCP and SDCARD
|
||||||
FEATURES =
|
FEATURES =
|
||||||
|
|
||||||
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),)
|
ifeq ($(TARGET),)
|
||||||
TARGET := $(DEFAULT_TARGET)
|
TARGET := $(DEFAULT_TARGET)
|
||||||
endif
|
endif
|
||||||
endif #CONFIG
|
|
||||||
|
|
||||||
include $(ROOT)/make/targets.mk
|
include $(ROOT)/make/targets.mk
|
||||||
|
|
||||||
BASE_CONFIGS = $(sort $(notdir $(patsubst %/,%,$(dir $(wildcard $(ROOT)/src/config/*/config.h)))))
|
|
||||||
|
|
||||||
REVISION := norevision
|
REVISION := norevision
|
||||||
ifeq ($(shell git diff --shortstat),)
|
ifeq ($(shell git diff --shortstat),)
|
||||||
REVISION := $(shell git log -1 --format="%h")
|
REVISION := $(shell git log -1 --format="%h")
|
||||||
|
@ -175,10 +150,6 @@ VPATH := $(VPATH):$(ROOT)/make
|
||||||
# start specific includes
|
# start specific includes
|
||||||
include $(ROOT)/make/mcu/$(TARGET_MCU).mk
|
include $(ROOT)/make/mcu/$(TARGET_MCU).mk
|
||||||
|
|
||||||
ifneq ($(CONFIG),)
|
|
||||||
TARGET_FLAGS += -DUSE_CONFIG
|
|
||||||
endif
|
|
||||||
|
|
||||||
# openocd specific includes
|
# openocd specific includes
|
||||||
include $(ROOT)/make/openocd.mk
|
include $(ROOT)/make/openocd.mk
|
||||||
|
|
||||||
|
@ -313,10 +284,6 @@ CPPCHECK = cppcheck $(CSOURCES) --enable=all --platform=unix64 \
|
||||||
|
|
||||||
TARGET_NAME := $(TARGET)
|
TARGET_NAME := $(TARGET)
|
||||||
|
|
||||||
ifneq ($(CONFIG),)
|
|
||||||
TARGET_NAME := $(TARGET_NAME)_$(CONFIG)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(REV),yes)
|
ifeq ($(REV),yes)
|
||||||
TARGET_NAME := $(TARGET_NAME)_$(REVISION)
|
TARGET_NAME := $(TARGET_NAME)_$(REVISION)
|
||||||
endif
|
endif
|
||||||
|
@ -481,16 +448,10 @@ $(BASE_TARGETS):
|
||||||
$(MAKE) hex TARGET=$@ && \
|
$(MAKE) hex TARGET=$@ && \
|
||||||
echo "Building $@ succeeded."
|
echo "Building $@ succeeded."
|
||||||
|
|
||||||
$(BASE_CONFIGS):
|
|
||||||
$(V0) @echo "Building config $@" && \
|
|
||||||
$(MAKE) hex CONFIG=$@ && \
|
|
||||||
echo "Building config $@ succeeded."
|
|
||||||
|
|
||||||
$(NOBUILD_TARGETS):
|
$(NOBUILD_TARGETS):
|
||||||
$(MAKE) TARGET=$@
|
$(MAKE) TARGET=$@
|
||||||
|
|
||||||
TARGETS_CLEAN = $(addsuffix _clean,$(VALID_TARGETS))
|
TARGETS_CLEAN = $(addsuffix _clean,$(VALID_TARGETS))
|
||||||
CONFIGS_CLEAN = $(addsuffix _clean,$(BASE_CONFIGS))
|
|
||||||
|
|
||||||
## clean : clean up temporary / machine-generated files
|
## clean : clean up temporary / machine-generated files
|
||||||
clean:
|
clean:
|
||||||
|
@ -510,10 +471,6 @@ test_clean:
|
||||||
$(TARGETS_CLEAN):
|
$(TARGETS_CLEAN):
|
||||||
$(V0) $(MAKE) -j TARGET=$(subst _clean,,$@) clean
|
$(V0) $(MAKE) -j TARGET=$(subst _clean,,$@) clean
|
||||||
|
|
||||||
## <CONFIG>_clean : clean up one specific config (alias for above)
|
|
||||||
$(CONFIGS_CLEAN):
|
|
||||||
$(V0) $(MAKE) -j CONFIG=$(subst _clean,,$@) clean
|
|
||||||
|
|
||||||
## clean_all : clean all valid targets
|
## clean_all : clean all valid targets
|
||||||
clean_all: $(TARGETS_CLEAN) test_clean
|
clean_all: $(TARGETS_CLEAN) test_clean
|
||||||
|
|
||||||
|
@ -623,9 +580,6 @@ targets:
|
||||||
@echo "Built targets: $(CI_TARGETS)"
|
@echo "Built targets: $(CI_TARGETS)"
|
||||||
@echo "Default target: $(TARGET)"
|
@echo "Default target: $(TARGET)"
|
||||||
|
|
||||||
configs:
|
|
||||||
@echo "Valid configs: $(BASE_CONFIGS)"
|
|
||||||
|
|
||||||
targets-ci-print:
|
targets-ci-print:
|
||||||
@echo $(CI_TARGETS)
|
@echo $(CI_TARGETS)
|
||||||
|
|
||||||
|
@ -698,7 +652,7 @@ $(TARGET_EF_HASH_FILE):
|
||||||
$(V1) touch $(TARGET_EF_HASH_FILE)
|
$(V1) touch $(TARGET_EF_HASH_FILE)
|
||||||
|
|
||||||
# rebuild everything when makefile changes or the extra flags have changed
|
# rebuild everything when makefile changes or the extra flags have changed
|
||||||
$(TARGET_OBJS): $(TARGET_EF_HASH_FILE) Makefile $(TARGET_DIR)/target.mk $(wildcard make/*) $(CONFIG_FILE)
|
$(TARGET_OBJS): $(TARGET_EF_HASH_FILE) Makefile $(TARGET_DIR)/target.mk $(wildcard make/*)
|
||||||
|
|
||||||
# include auto-generated dependencies
|
# include auto-generated dependencies
|
||||||
-include $(TARGET_DEPS)
|
-include $(TARGET_DEPS)
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AG3XF4
|
|
||||||
#define MANUFACTURER_ID AIRB
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AG3XF7
|
|
||||||
#define MANUFACTURER_ID AIRB
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AIKONF4
|
|
||||||
#define MANUFACTURER_ID AIKO
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_ICM20602
|
|
||||||
#define USE_GYRO_SPI_ICM20602
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AIKONF7
|
|
||||||
#define MANUFACTURER_ID AIKO
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_SPI_BMP280
|
|
||||||
#define USE_BARO_SPI_DPS310
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,48 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AIRBOTF4
|
|
||||||
#define MANUFACTURER_ID AIRB
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_SPI_BMP280
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_BARO_BMP085
|
|
||||||
#define USE_BARO_MS5611
|
|
||||||
|
|
|
@ -1,47 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AIRBOTF4SD
|
|
||||||
#define MANUFACTURER_ID AIRB
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#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
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AIRBOTF4V2
|
|
||||||
#define MANUFACTURER_ID AIRB
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AIRBOTF7
|
|
||||||
#define MANUFACTURER_ID AIRB
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AIRBOTF7HDV
|
|
||||||
#define MANUFACTURER_ID AIRB
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AIRF7
|
|
||||||
#define MANUFACTURER_ID RAST
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME ALIENFLIGHTF4
|
|
||||||
#define MANUFACTURER_ID AFNG
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU9250
|
|
||||||
#define USE_ACC
|
|
||||||
#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
|
|
||||||
|
|
|
@ -1,49 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ALIENFLIGHTNGF7
|
|
||||||
#define MANUFACTURER_ID AFNG
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU9250
|
|
||||||
#define USE_ACC
|
|
||||||
#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
|
|
||||||
#define USE_BARO_SPI_BMP280
|
|
||||||
#define USE_MAG_MPU925X_AK8963
|
|
||||||
#define USE_MAG_SPI_AK8963
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25N01G
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ALIENFLIGHTNGF7_DUAL
|
|
||||||
#define MANUFACTURER_ID AFNG
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_ICM20602
|
|
||||||
#define USE_ACC_SPI_ICM20602
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ALIENFLIGHTNGF7_ELRS
|
|
||||||
#define MANUFACTURER_ID AFNG
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU9250
|
|
||||||
#define USE_ACC
|
|
||||||
#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_SPI
|
|
||||||
#define USE_RX_EXPRESSLRS
|
|
||||||
#define USE_RX_EXPRESSLRS_TELEMETRY
|
|
||||||
#define USE_RX_SX1280
|
|
||||||
#define RX_CHANNELS_AETR
|
|
||||||
#define RX_SPI_DEFAULT_PROTOCOL RX_SPI_EXPRESSLRS
|
|
||||||
#define RX_EXPRESSLRS_TIMER_INSTANCE TIM5
|
|
||||||
#define RX_EXPRESSLRS_SPI_RESET_PIN PB6
|
|
||||||
#define RX_EXPRESSLRS_SPI_BUSY_PIN PB7
|
|
||||||
#define RX_SPI_CS PA15
|
|
||||||
#define RX_SPI_EXTI PB15
|
|
||||||
#define RX_SPI_BIND PB2
|
|
||||||
#define RX_SPI_LED PB9
|
|
||||||
|
|
|
@ -1,45 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ALIENFLIGHTNGF7_RX
|
|
||||||
#define MANUFACTURER_ID AFNG
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU9250
|
|
||||||
#define USE_ACC
|
|
||||||
#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
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME ALIENWHOOPF4
|
|
||||||
#define MANUFACTURER_ID ALWH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F745
|
|
||||||
|
|
||||||
#define BOARD_NAME ANYFCF7
|
|
||||||
#define MANUFACTURER_ID FOSS
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_MS5611
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ANYFCM7
|
|
||||||
#define MANUFACTURER_ID FOSS
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_MS5611
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODAF405
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODAF405V2MPU6000
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODAF405V2MPU6500
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODAF722BLE
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODAF722MINI
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODARCF411_AIO
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODARCF7DUAL
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32H743
|
|
||||||
|
|
||||||
#define BOARD_NAME AOCODARCH7DUAL
|
|
||||||
#define MANUFACTURER_ID SJET
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25N01G
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME APEXF7
|
|
||||||
#define MANUFACTURER_ID APEX
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ARESF7
|
|
||||||
#define MANUFACTURER_ID RCTI
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25N01G
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME ATOMRCF405
|
|
||||||
#define MANUFACTURER_ID SKZO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME ATOMRCF411
|
|
||||||
#define MANUFACTURER_ID SKZO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ATOMRCF722
|
|
||||||
#define MANUFACTURER_ID SKZO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AXISFLYINGF7
|
|
||||||
#define MANUFACTURER_ID AXFL
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_BARO_QMP6988
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME AXISFLYINGF7PRO
|
|
||||||
#define MANUFACTURER_ID AXFL
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME BEEROTORF4
|
|
||||||
#define MANUFACTURER_ID RCTI
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME BETAFLIGHTF4
|
|
||||||
#define MANUFACTURER_ID FPVM
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME BETAFPVF405
|
|
||||||
#define MANUFACTURER_ID BEFH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME BETAFPVF411
|
|
||||||
#define MANUFACTURER_ID BEFH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME BETAFPVF411RX
|
|
||||||
#define MANUFACTURER_ID BEFH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_RX_CC2500
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
|
|
|
@ -1,54 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME BETAFPVF4SX1280
|
|
||||||
#define MANUFACTURER_ID BEFH
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#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 RX_SPI_DEFAULT_PROTOCOL RX_SPI_EXPRESSLRS
|
|
||||||
#define RX_EXPRESSLRS_TIMER_INSTANCE TIM5
|
|
||||||
#define RX_EXPRESSLRS_SPI_RESET_PIN PB9
|
|
||||||
#define RX_EXPRESSLRS_SPI_BUSY_PIN PA13
|
|
||||||
#define RX_SPI_CS PA15
|
|
||||||
#define RX_SPI_EXTI PC13
|
|
||||||
#define RX_SPI_BIND PB2
|
|
||||||
#define RX_SPI_LED PC15
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME BETAFPVF722
|
|
||||||
#define MANUFACTURER_ID BEFH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32H743
|
|
||||||
|
|
||||||
#define BOARD_NAME BETAFPVH743
|
|
||||||
#define MANUFACTURER_ID BEFH
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,45 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME BLADE_F7
|
|
||||||
#define MANUFACTURER_ID RUSH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME BLADE_F7_HD
|
|
||||||
#define MANUFACTURER_ID RUSH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_BARO_QMP6988
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME BLUEJAYF4
|
|
||||||
#define MANUFACTURER_ID BKMN
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25P16
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME CLRACINGF4
|
|
||||||
#define MANUFACTURER_ID CLRA
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME CLRACINGF7
|
|
||||||
#define MANUFACTURER_ID CLRA
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_FLASH_W25N01G
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME COLIBRI
|
|
||||||
#define MANUFACTURER_ID TEBS
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_MS5611
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME CRAZYBEEF4DX
|
|
||||||
#define MANUFACTURER_ID HAMO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME CRAZYBEEF4DXS
|
|
||||||
#define MANUFACTURER_ID HAMO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME CRAZYBEEF4FR
|
|
||||||
#define MANUFACTURER_ID HAMO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_RX_CC2500
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME CRAZYBEEF4FS
|
|
||||||
#define MANUFACTURER_ID HAMO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_RX_CC2500
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,58 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME CRAZYBEEF4SX1280
|
|
||||||
#define MANUFACTURER_ID HAMO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#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 RX_SPI_DEFAULT_PROTOCOL RX_SPI_EXPRESSLRS
|
|
||||||
#define RX_EXPRESSLRS_TIMER_INSTANCE TIM3
|
|
||||||
#define RX_EXPRESSLRS_SPI_RESET_PIN PA8
|
|
||||||
#define RX_EXPRESSLRS_SPI_BUSY_PIN PA13
|
|
||||||
#define RX_SPI_CS PA15
|
|
||||||
#define RX_SPI_EXTI PC14
|
|
||||||
#define RX_SPI_BIND PB2
|
|
||||||
#define RX_SPI_LED PB9
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME CYCLONEF405_PRO
|
|
||||||
#define MANUFACTURER_ID CYCL
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME CYCLONEF722_PRO
|
|
||||||
#define MANUFACTURER_ID CYCL
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25P16
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME DAKEFPVF405
|
|
||||||
#define MANUFACTURER_ID DAKE
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_SPI_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME DAKEFPVF411
|
|
||||||
#define MANUFACTURER_ID DAKE
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_SPI_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME DAKEFPVF722
|
|
||||||
#define MANUFACTURER_ID DAKE
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_SPI_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME DALRCF405
|
|
||||||
#define MANUFACTURER_ID DALR
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME DALRCF722DUAL
|
|
||||||
#define MANUFACTURER_ID DALR
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_MS5611
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME DARWINF411
|
|
||||||
#define MANUFACTURER_ID DAFP
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,61 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME DARWINF4SX1280HD
|
|
||||||
#define MANUFACTURER_ID DAFP
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#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_GYRO
|
|
||||||
#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_MAX7456
|
|
||||||
#define USE_RX_SPI
|
|
||||||
#define USE_RX_EXPRESSLRS
|
|
||||||
#define USE_RX_EXPRESSLRS_TELEMETRY
|
|
||||||
#define USE_RX_SX1280
|
|
||||||
#define RX_CHANNELS_AETR
|
|
||||||
#define RX_SPI_DEFAULT_PROTOCOL RX_SPI_EXPRESSLRS
|
|
||||||
#define RX_EXPRESSLRS_TIMER_INSTANCE TIM5
|
|
||||||
#define RX_EXPRESSLRS_SPI_RESET_PIN PB9
|
|
||||||
#define RX_EXPRESSLRS_SPI_BUSY_PIN PA13
|
|
||||||
#define RX_SPI_CS PA15
|
|
||||||
#define RX_SPI_EXTI PC13
|
|
||||||
#define RX_SPI_BIND PB2
|
|
||||||
#define RX_SPI_LED PC15
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME DARWINF722HD
|
|
||||||
#define MANUFACTURER_ID DAFP
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME DFR_F722_DUAL_HD
|
|
||||||
#define MANUFACTURER_ID DFRA
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME DRONIUSF7
|
|
||||||
#define MANUFACTURER_ID FOSS
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME DYSF44530D
|
|
||||||
#define MANUFACTURER_ID DYST
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME DYSF4PRO
|
|
||||||
#define MANUFACTURER_ID DYST
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME EACHINEF411_AIO
|
|
||||||
#define MANUFACTURER_ID EACH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME EACHINEF722
|
|
||||||
#define MANUFACTURER_ID EACH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME EACHINEF722_AIO
|
|
||||||
#define MANUFACTURER_ID EACH
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME ELINF405
|
|
||||||
#define MANUFACTURER_ID DRCL
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME ELINF722
|
|
||||||
#define MANUFACTURER_ID DRCL
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME ELLE0
|
|
||||||
#define MANUFACTURER_ID LEGA
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
|
|
|
@ -1,45 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME EMAX_BABYHAWK_II_HD
|
|
||||||
#define MANUFACTURER_ID EMAX
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,56 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME EMAX_TINYHAWKF4SX1280
|
|
||||||
#define MANUFACTURER_ID EMAX
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_GYRO_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 RX_SPI_DEFAULT_PROTOCOL RX_SPI_EXPRESSLRS
|
|
||||||
#define RX_EXPRESSLRS_TIMER_INSTANCE TIM5
|
|
||||||
#define RX_EXPRESSLRS_SPI_RESET_PIN PA8
|
|
||||||
#define RX_EXPRESSLRS_SPI_BUSY_PIN PA13
|
|
||||||
#define RX_SPI_CS PA15
|
|
||||||
#define RX_SPI_EXTI PC14
|
|
||||||
#define RX_SPI_BIND PB2
|
|
||||||
#define RX_SPI_LED PB9
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME EMAX_TINYHAWK_F411RX
|
|
||||||
#define MANUFACTURER_ID EMAX
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_RX_CC2500
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME EXF722DUAL
|
|
||||||
#define MANUFACTURER_ID EXUA
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME EXUAVF4PRO
|
|
||||||
#define MANUFACTURER_ID EXUA
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME F4BY
|
|
||||||
#define MANUFACTURER_ID FOSS
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_MS5611
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FENIX_F405
|
|
||||||
#define MANUFACTURER_ID FOSS
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25M
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_FORTINIF4
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_FORTINIF4_REV03
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_PIKOF4
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_PIKOF4OSD
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_RACEPIT
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_M25P16
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_RACEPITF7
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_RACEPITF7_MINI
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FF_RACEPIT_MINI
|
|
||||||
#define MANUFACTURER_ID FFPV
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FISHDRONEF4
|
|
||||||
#define MANUFACTURER_ID LEGA
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6500
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6500
|
|
||||||
#define USE_MAX7456
|
|
||||||
#define USE_SDCARD
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME FLOWBOX
|
|
||||||
#define MANUFACTURER_ID NERC
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME FLOWBOXV2
|
|
||||||
#define MANUFACTURER_ID NERC
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYCOLORF7
|
|
||||||
#define MANUFACTURER_ID FLCO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F7X2
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYCOLORF7_AIO
|
|
||||||
#define MANUFACTURER_ID FLCO
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYWOOF405
|
|
||||||
#define MANUFACTURER_ID FLWO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,45 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYWOOF405NANO
|
|
||||||
#define MANUFACTURER_ID FLWO
|
|
||||||
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYWOOF405PRO
|
|
||||||
#define MANUFACTURER_ID FLWO
|
|
||||||
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F405
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYWOOF405S_AIO
|
|
||||||
#define MANUFACTURER_ID FLWO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_ACCGYRO_BMI270
|
|
||||||
#define USE_GYRO_SPI_ICM42688P
|
|
||||||
#define USE_ACC_SPI_ICM42688P
|
|
||||||
#define USE_BARO
|
|
||||||
#define USE_BARO_BMP280
|
|
||||||
#define USE_BARO_DPS310
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYWOOF411
|
|
||||||
#define MANUFACTURER_ID FLWO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_ICM20689
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_ICM20689
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYWOOF411EVO_HD
|
|
||||||
#define MANUFACTURER_ID FLWO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#define USE_FLASH
|
|
||||||
#define USE_FLASH_W25Q128FV
|
|
||||||
#define USE_MAX7456
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, please remove this comment once the file is edited.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define FC_TARGET_MCU STM32F411
|
|
||||||
|
|
||||||
#define BOARD_NAME FLYWOOF411HEX
|
|
||||||
#define MANUFACTURER_ID FLWO
|
|
||||||
|
|
||||||
#define USE_ACC
|
|
||||||
#define USE_ACC_SPI_MPU6000
|
|
||||||
#define USE_GYRO
|
|
||||||
#define USE_GYRO_SPI_MPU6000
|
|
||||||
#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