116 lines
2.7 KiB
C
116 lines
2.7 KiB
C
/*
|
|
* This file is part of Cleanflight and Betaflight.
|
|
*
|
|
* Cleanflight and Betaflight are 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.
|
|
*
|
|
* Cleanflight and Betaflight are distributed in the hope that they
|
|
* 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/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// Treat the target as unified, and expect manufacturer id / board name
|
|
// to be supplied when the board is configured for the first time
|
|
#define USE_UNIFIED_TARGET
|
|
|
|
#define USE_BEEPER
|
|
|
|
// MPU interrupt
|
|
#define USE_EXTI
|
|
#define USE_MPU_DATA_READY_SIGNAL
|
|
#define USE_GYRO_EXTI
|
|
|
|
#define USE_ACC
|
|
#define USE_GYRO
|
|
|
|
#define USE_ACC_MPU6050
|
|
#define USE_GYRO_MPU6050
|
|
#define USE_ACC_MPU6500
|
|
#define USE_GYRO_MPU6500
|
|
#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
|
|
// Other USE_ACCs and USE_GYROs should follow
|
|
|
|
#define USE_MAG
|
|
#define USE_MAG_DATA_READY_SIGNAL
|
|
#define USE_MAG_HMC5883
|
|
#define USE_MAG_SPI_HMC5883
|
|
#define USE_MAG_QMC5883
|
|
#define USE_MAG_LIS3MDL
|
|
#define USE_MAG_AK8963
|
|
#define USE_MAG_SPI_AK8963
|
|
|
|
#define USE_BARO
|
|
#define USE_BARO_MS5611
|
|
#define USE_BARO_SPI_MS5611
|
|
#define USE_BARO_BMP280
|
|
#define USE_BARO_SPI_BMP280
|
|
#define USE_BARO_LPS
|
|
#define USE_BARO_SPI_LPS
|
|
|
|
#define USE_SDCARD
|
|
#define USE_SDCARD_SPI
|
|
|
|
#define USE_FLASHFS
|
|
#define USE_FLASH_M25P16
|
|
|
|
#define USE_MAX7456
|
|
|
|
#define USE_TRANSPONDER
|
|
|
|
//TODO: Make this actually work by making the pins configurable
|
|
#define USE_RANGEFINDER
|
|
#define USE_RANGEFINDER_HCSR04
|
|
#define USE_RANGEFINDER_TF
|
|
|
|
#define USE_SPI
|
|
#define SPI_FULL_RECONFIGURABILITY
|
|
|
|
#define USE_I2C
|
|
#define I2C_FULL_RECONFIGURABILITY
|
|
|
|
#define USE_VCP
|
|
|
|
#define USE_SOFTSERIAL1
|
|
#define USE_SOFTSERIAL2
|
|
|
|
#define UNIFIED_SERIAL_PORT_COUNT 3
|
|
|
|
#define USE_USB_DETECT
|
|
|
|
//TODO: Re-enable this after it's been fixed to work with unified targets
|
|
//#define USE_ESCSERIAL
|
|
|
|
#define USE_ADC
|
|
|
|
#if defined(STM32F4)
|
|
//We currently only have stdperiph drivers for this
|
|
|
|
#define USE_RX_SPI
|
|
|
|
#define USE_RX_FRSKY_SPI_D
|
|
#define USE_RX_FRSKY_SPI_X
|
|
#define USE_RX_SFHSS_SPI
|
|
#define USE_RX_FRSKY_SPI_TELEMETRY
|
|
#define USE_RX_CC2500_SPI_PA_LNA
|
|
#define USE_RX_CC2500_SPI_DIVERSITY
|
|
|
|
#define USE_RX_FLYSKY
|
|
#define USE_RX_FLYSKY_SPI_LED
|
|
#endif
|