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 "FRF4"
24 #define USBD_PRODUCT_STRING "FRSKYF4"
25 #define USE_TARGET_CONFIG
29 #define BEEPER_PIN PB4
30 #define BEEPER_INVERTED
32 #define INVERTER_PIN_UART6 PC8
34 #define GYRO_1_CS_PIN PA4
35 #define GYRO_1_SPI_INSTANCE SPI1
38 #define USE_ACC_SPI_MPU6000
41 #define USE_GYRO_SPI_MPU6000
43 #define GYRO_1_ALIGN CW270_DEG
45 #define GYRO_1_EXTI_PIN PC4
48 #define USE_BARO_BMP280
49 #define USE_BARO_SPI_BMP280
50 #define BARO_SPI_INSTANCE SPI3
51 #define BARO_CS_PIN PB3
54 #define MAX7456_SPI_INSTANCE SPI3
55 #define MAX7456_SPI_CS_PIN PA15
57 #define ENABLE_BLACKBOX_LOGGING_ON_SDCARD_BY_DEFAULT
60 #define USE_SDCARD_SPI
61 #define SDCARD_DETECT_INVERTED
62 #define SDCARD_DETECT_PIN PB7
63 #define SDCARD_SPI_INSTANCE SPI2
64 #define SDCARD_SPI_CS_PIN SPI2_NSS_PIN
65 #define SPI2_TX_DMA_OPT 0 // DMA 1 Stream 4 Channel 0
68 #define USE_USB_DETECT
69 #define USB_DETECT_PIN PC5
72 #define UART1_RX_PIN PA10
73 #define UART1_TX_PIN PA9
76 #define UART3_RX_PIN PB11
77 #define UART3_TX_PIN PB10
80 #define UART6_RX_PIN PC7
81 #define UART6_TX_PIN PC6
83 #define USE_SOFTSERIAL1
84 #define USE_SOFTSERIAL2
86 #define SERIAL_PORT_COUNT 6
89 #define ESCSERIAL_TIMER_TX_PIN PB8 // (HARDARE=0,PPM)
92 #define USE_SPI_DEVICE_1
94 #define USE_SPI_DEVICE_2
95 #define SPI2_NSS_PIN PB12
96 #define SPI2_SCK_PIN PB13
97 #define SPI2_MISO_PIN PB14
98 #define SPI2_MOSI_PIN PB15
100 #define USE_SPI_DEVICE_3
101 #define SPI3_NSS_PIN PA15
102 #define SPI3_SCK_PIN PC10
103 #define SPI3_MISO_PIN PC11
104 #define SPI3_MOSI_PIN PC12
107 #define CURRENT_METER_ADC_PIN PC1
108 #define VBAT_ADC_PIN PC2
110 #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL
111 #define DEFAULT_FEATURES (FEATURE_OSD)
112 #define AVOID_UART1_FOR_PWM_PPM
113 #define SERIALRX_PROVIDER SERIALRX_SBUS
114 #define SERIALRX_UART SERIAL_PORT_USART1
116 #define TARGET_IO_PORTA (0xffff & ~(BIT(14)|BIT(13)))
117 #define TARGET_IO_PORTB (0xffff & ~(BIT(2)))
118 #define TARGET_IO_PORTC (0xffff & ~(BIT(15)|BIT(14)|BIT(13)))
119 #define TARGET_IO_PORTD BIT(2)
121 #define USABLE_TIMER_CHANNEL_COUNT 13
122 #define USED_TIMERS ( TIM_N(1) | TIM_N(2) | TIM_N(3) | TIM_N(4) | TIM_N(5) | TIM_N(8) )