Add Winbond 25Q128 flash driver
[betaflight.git] / src / main / target / F4BY / target.h
blob8c9de6b1e05e52d123dec79789319915537ee141
1 /*
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)
8 * any later version.
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/>.
21 #pragma once
22 #define TARGET_BOARD_IDENTIFIER "F4BY"
24 #define USBD_PRODUCT_STRING "Swift-Flyer F4BY"
26 #define LED0_PIN PE3 // Blue LED
27 #define LED1_PIN PE2 // Red LED
28 #define LED2_PIN PE1 // Blue LED
30 #define USE_BEEPER
31 #define BEEPER_PIN PE5
33 #define INVERTER_PIN_UART6 PD3
37 // MPU6000 interrupts
38 #define USE_EXTI
39 #define USE_GYRO_EXTI
40 #define GYRO_1_EXTI_PIN PB0
41 #define USE_MPU_DATA_READY_SIGNAL
43 #define GYRO_1_CS_PIN PA4
44 #define GYRO_1_SPI_INSTANCE SPI1
46 #define USE_ACC
47 #define USE_ACC_SPI_MPU6000
49 #define USE_GYRO
50 #define USE_GYRO_SPI_MPU6000
51 #define GYRO_1_ALIGN CW90_DEG
53 #define USE_MAG
54 #define USE_MAG_HMC5883
55 #define USE_MAG_QMC5883
56 #define USE_MAG_LIS3MDL
57 #define MAG_HMC5883_ALIGN CW90_DEG
59 #define USE_BARO
60 #define USE_BARO_MS5611
62 #define USE_SDCARD
63 #define USE_SDCARD_SPI
64 #define SDCARD_SPI_INSTANCE SPI2
65 #define SDCARD_SPI_CS_PIN PE15
66 #define SPI2_TX_DMA_OPT 0 // DMA 1 Stream 4 Channel 0
68 #define USE_VCP
69 #define USE_USB_DETECT
70 #define USB_DETECT_PIN PA9
72 #define USE_UART1
73 #define UART1_RX_PIN PB7
74 #define UART1_TX_PIN PB6
76 #define USE_UART2
77 #define UART2_RX_PIN PD6
78 #define UART2_TX_PIN PD5
80 #define USE_UART3
81 #define UART3_RX_PIN PD9
82 #define UART3_TX_PIN PD8
84 #define USE_UART4
85 #define UART4_RX_PIN PC11
86 #define UART4_TX_PIN PC10
88 //#define USE_UART5 - error in DMA!!!
89 //#define UART5_RX_PIN PD2
90 //#define UART5_TX_PIN PC12
92 #define USE_UART6
93 #define UART6_RX_PIN PC7
94 #define UART6_TX_PIN PC6
96 #define USE_SOFTSERIAL1
97 #define USE_SOFTSERIAL2
99 #define SERIAL_PORT_COUNT 8 //VCP, UART1, UART2, UART3, UART4, UART6, SOFTSERIAL x 2
101 #define USE_ESCSERIAL
102 #define ESCSERIAL_TIMER_TX_PIN PA0 // (HARDARE=8)
104 #define USE_SPI
105 #define USE_SPI_DEVICE_1
106 #define SPI1_SCK_PIN PA5
107 #define SPI1_MISO_PIN PA6
108 #define SPI1_MOSI_PIN PA7
109 #define SPI1_NSS_PIN NONE
111 #define USE_SPI_DEVICE_2
112 #define SPI2_NSS_PIN NONE
113 #define SPI2_SCK_PIN PB13
114 #define SPI2_MISO_PIN PB14
115 #define SPI2_MOSI_PIN PB15
117 #define USE_SPI_DEVICE_3
118 #define SPI3_NSS_PIN PA15
119 #define SPI3_SCK_PIN PB3
120 #define SPI3_MISO_PIN PB4
121 #define SPI3_MOSI_PIN PB5
124 #define USE_I2C
125 #define USE_I2C_DEVICE_2
126 #define I2C_DEVICE (I2CDEV_2)
127 #define USE_I2C_PULLUP
128 #define I2C2_SCL PB10
129 #define I2C2_SDA PB11
131 #define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC
132 #define USE_ADC
133 #define VBAT_ADC_PIN PC3
134 #define CURRENT_METER_ADC_PIN PC2
135 #define RSSI_ADC_PIN PC1
137 #undef USE_LED_STRIP
139 #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL
140 #define SERIALRX_PROVIDER SERIALRX_SBUS
142 #define ENABLE_BLACKBOX_LOGGING_ON_SDCARD_BY_DEFAULT
144 #define TARGET_IO_PORTA 0xffff
145 #define TARGET_IO_PORTB 0xffff
146 #define TARGET_IO_PORTC 0xffff
147 #define TARGET_IO_PORTD 0xffff
148 #define TARGET_IO_PORTE 0xffff
150 #define USABLE_TIMER_CHANNEL_COUNT 17
151 #define USED_TIMERS ( TIM_N(1) |TIM_N(2) | TIM_N(3) | TIM_N(4) | TIM_N(5) | TIM_N(9) )