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/>.
22 #define TARGET_BOARD_IDENTIFIER "PYRO"
23 #define USBD_PRODUCT_STRING "PYRODRONEF4"
27 #define BEEPER_PIN PB5
28 #define BEEPER_INVERTED
30 #define INVERTER_PIN_UART1 PC3 // PC3 used as sBUS inverter select GPIO
34 #define GYRO_1_EXTI_PIN PC4
35 #define USE_MPU_DATA_READY_SIGNAL
39 #define USE_SPI_DEVICE_1
42 #define GYRO_1_CS_PIN PA4
43 #define GYRO_1_SPI_INSTANCE SPI1
45 #define USE_ACC_SPI_MPU6000
47 #define USE_GYRO_SPI_MPU6000
48 #define GYRO_1_ALIGN CW0_DEG
51 #define USE_SPI_DEVICE_2
52 #define SPI2_NSS_PIN PB12
53 #define SPI2_SCK_PIN PB13
54 #define SPI2_MISO_PIN PB14
55 #define SPI2_MOSI_PIN PB15
58 #define MAX7456_SPI_INSTANCE SPI2
59 #define MAX7456_SPI_CS_PIN PB12
63 // DEFINE UART AND VCP
67 #define UART1_RX_PIN PA10
68 #define UART1_TX_PIN PA9
71 #define UART2_RX_PIN PA3
72 #define UART2_TX_PIN PA2
75 #define UART3_RX_PIN PB11
76 #define UART3_TX_PIN PB10
79 #define UART4_RX_PIN PA1
80 #define UART4_TX_PIN PA0
83 #define UART5_RX_PIN PD2
84 #define UART5_TX_PIN PC12
87 #define UART6_RX_PIN PC7
88 #define UART6_TX_PIN PC6
89 #define SERIAL_PORT_COUNT 7 //VCP, USART1, USART2,USART3,USART4, USART5,USART6
93 #define ESCSERIAL_TIMER_TX_PIN PB9 // (HARDARE=0,PPM)
97 //DEFINE BATTERY METER
99 #define CURRENT_METER_ADC_PIN PC1
100 #define VBAT_ADC_PIN PC2
101 #define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC
102 #define DEFAULT_CURRENT_METER_SOURCE CURRENT_METER_NONE
103 #define USE_TRANSPONDER
105 // DEFINE DEFAULT FEATURE
106 #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL
107 #define DEFAULT_FEATURES FEATURE_OSD
109 #define TARGET_IO_PORTA (0xffff & ~(BIT(13)))
110 #define TARGET_IO_PORTB (0xffff & ~(BIT(2)))
111 #define TARGET_IO_PORTC (0xffff & ~(BIT(15)|BIT(14)|BIT(13)))
112 #define TARGET_IO_PORTD BIT(2)
115 #define USABLE_TIMER_CHANNEL_COUNT 6
116 #define USED_TIMERS ( TIM_N(1) | TIM_N(3) | TIM_N(4) | TIM_N(8) | TIM_N(11))