mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 01:05:27 +03:00
101 lines
2.7 KiB
C
101 lines
2.7 KiB
C
/*
|
|
* This file is part of Cleanflight.
|
|
*
|
|
* Cleanflight is free software: you can redistribute it and/or modify
|
|
* it 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 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 Cleanflight. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define TARGET_BOARD_IDENTIFIER "EUF1"
|
|
|
|
#define LED0_GPIO GPIOB
|
|
#define LED0_PIN Pin_3 // PB3 (LED)
|
|
#define LED0_PERIPHERAL RCC_APB2Periph_GPIOB
|
|
#define LED1_GPIO GPIOB
|
|
#define LED1_PIN Pin_4 // PB4 (LED)
|
|
#define LED1_PERIPHERAL RCC_APB2Periph_GPIOB
|
|
|
|
#define INVERTER_PIN Pin_2 // PB2 (BOOT1) abused as inverter select GPIO
|
|
#define INVERTER_GPIO GPIOB
|
|
#define INVERTER_PERIPHERAL RCC_APB2Periph_GPIOB
|
|
#define INVERTER_USART USART2
|
|
|
|
#define MPU6000_CS_GPIO GPIOB
|
|
#define MPU6000_CS_PIN GPIO_Pin_12
|
|
#define MPU6000_SPI_INSTANCE SPI2
|
|
|
|
#define MPU6500_CS_GPIO GPIOB
|
|
#define MPU6500_CS_PIN GPIO_Pin_12
|
|
#define MPU6500_SPI_INSTANCE SPI2
|
|
|
|
#define ACC
|
|
#define USE_FAKE_ACC
|
|
#define USE_ACC_ADXL345
|
|
#define USE_ACC_BMA280
|
|
#define USE_ACC_MMA8452
|
|
#define USE_ACC_MPU3050
|
|
#define USE_ACC_MPU6050
|
|
//#define USE_ACC_SPI_MPU6000
|
|
#define USE_ACC_SPI_MPU6500
|
|
|
|
#define GYRO
|
|
#define USE_FAKE_GYRO
|
|
#define USE_GYRO_L3G4200D
|
|
//#define USE_GYRO_L3GD20
|
|
//#define USE_GYRO_MPU3050
|
|
#define USE_GYRO_MPU6050
|
|
#define USE_GYRO_SPI_MPU6000
|
|
#define USE_GYRO_SPI_MPU6500
|
|
|
|
#define BARO
|
|
#define USE_BARO_MS5611
|
|
#define USE_BARO_BMP085
|
|
|
|
#define MAG
|
|
#define SONAR
|
|
#define LED0
|
|
#define LED1
|
|
#define DISPLAY
|
|
#define INVERTER
|
|
|
|
#define USE_USART1
|
|
#define USE_USART2
|
|
#define USE_SOFTSERIAL1
|
|
#define USE_SOFTSERIAL2
|
|
#define SERIAL_PORT_COUNT 4
|
|
|
|
#define SOFTSERIAL_1_TIMER TIM3
|
|
#define SOFTSERIAL_1_TIMER_RX_HARDWARE 4 // PWM 5
|
|
#define SOFTSERIAL_1_TIMER_TX_HARDWARE 5 // PWM 6
|
|
#define SOFTSERIAL_2_TIMER TIM3
|
|
#define SOFTSERIAL_2_TIMER_RX_HARDWARE 6 // PWM 7
|
|
#define SOFTSERIAL_2_TIMER_TX_HARDWARE 7 // PWM 8
|
|
|
|
#define USE_I2C
|
|
#define I2C_DEVICE (I2CDEV_2)
|
|
|
|
// #define SOFT_I2C // enable to test software i2c
|
|
// #define SOFT_I2C_PB1011 // If SOFT_I2C is enabled above, need to define pinout as well (I2C1 = PB67, I2C2 = PB1011)
|
|
// #define SOFT_I2C_PB67
|
|
|
|
#define SENSORS_SET (SENSOR_ACC | SENSOR_BARO | SENSOR_MAG)
|
|
|
|
#define GPS
|
|
#define LED_STRIP
|
|
#define LED_STRIP_TIMER TIM3
|
|
|
|
#define TELEMETRY
|
|
#define SERIAL_RX
|
|
#define AUTOTUNE
|
|
|