2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
23 #define TARGET_BOARD_IDENTIFIER "FXF4"
24 #define USBD_PRODUCT_STRING "FOXEERF405"
25 //----------------------------------------
27 //LED & BEE-------------------------------
31 #define BEEPER_PIN PA4
32 #define BEEPER_INVERTED
34 //Gyro & ACC-------------------------------
36 #define USE_SPI_DEVICE_1
38 #define SPI1_SCK_PIN PA5
39 #define SPI1_MISO_PIN PA6
40 #define SPI1_MOSI_PIN PA7
44 #define GYRO_1_EXTI_PIN PC4
45 #define USE_MPU_DATA_READY_SIGNAL
49 #define GYRO_1_CS_PIN PB2
50 #define GYRO_1_SPI_INSTANCE SPI1
51 #define GYRO_1_ALIGN CW90_DEG
54 #define USE_GYRO_SPI_ICM20689
55 #define USE_ACC_SPI_ICM20689
58 #define USE_GYRO_SPI_MPU6000
59 #define USE_ACC_SPI_MPU6000
61 //Baro & MAG-------------------------------
63 #define USE_I2C_DEVICE_1
64 #define I2C_DEVICE (I2CDEV_1)
68 //ON BOARD FLASH -----------------------------------
69 #define USE_SPI_DEVICE_2
70 #define SPI2_SCK_PIN PB13
71 #define SPI2_MISO_PIN PB14
72 #define SPI2_MOSI_PIN PC3
74 #define ENABLE_BLACKBOX_LOGGING_ON_SPIFLASH_BY_DEFAULT
76 #define USE_FLASH_M25P16
77 #define FLASH_CS_PIN PB12
78 #define FLASH_SPI_INSTANCE SPI2
80 //GPS ----------------------------------------------
84 //OSD ----------------------------------------------
85 #define USE_SPI_DEVICE_3
86 #define SPI3_SCK_PIN PC10
87 #define SPI3_MISO_PIN PC11
88 #define SPI3_MOSI_PIN PB5
91 #define MAX7456_SPI_INSTANCE SPI3
92 #define MAX7456_SPI_CS_PIN PA15
94 //UART ----------------------------------------------
98 #define UART1_RX_PIN PB7
99 #define UART1_TX_PIN PA9
102 #define UART2_RX_PIN PA3
103 #define UART2_TX_PIN PA2
106 #define UART3_RX_PIN PB11
107 #define UART3_TX_PIN PB10
110 #define UART4_RX_PIN PA1
111 #define UART4_TX_PIN PA0
114 #define UART5_RX_PIN PD2
115 #define UART5_TX_PIN PC12
117 #define USE_SOFTSERIAL1
118 #define USE_SOFTSERIAL2
120 #define SERIAL_PORT_COUNT 8
122 #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL
123 #define SERIALRX_PROVIDER SERIALRX_SBUS
125 //ADC ----------------------------------------------
127 #define ADC_INSTANCE ADC1 // Default added
128 #define ADC1_DMA_OPT 0 // DMA 2 Stream 0 Channel 0
130 #define VBAT_ADC_PIN PC0
131 #define CURRENT_METER_ADC_PIN PC1
132 #define RSSI_ADC_PIN PA0 //TIM5_CH1 & UART4_TX & TELEMETRY & FPORT
134 #define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC
135 #define DEFAULT_CURRENT_METER_SOURCE CURRENT_METER_ADC
137 #define CURRENT_METER_SCALE_DEFAULT 166
139 #define ENABLE_DSHOT_DMAR DSHOT_DMAR_ON
141 #define USE_ESCSERIAL
142 #define ESCSERIAL_TIMER_TX_PIN PA3
144 #define TARGET_IO_PORTA 0xffff
145 #define TARGET_IO_PORTB 0xffff
146 #define TARGET_IO_PORTC 0xffff
147 #define TARGET_IO_PORTD (BIT(2))
150 #define USABLE_TIMER_CHANNEL_COUNT 9
151 #define USED_TIMERS (TIM_N(1)|TIM_N(2)|TIM_N(3)|TIM_N(8)|TIM_N(12))