Create release.yml
[betaflight.git] / src / main / target / AIRF7 / target.h
blob3eab48a6f0114ab25269425a47051d48f368c153
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
23 #define TARGET_BOARD_IDENTIFIER "RAF7"
24 #define USBD_PRODUCT_STRING "Racerstar AirF7"
26 #define LED0_PIN PA3
28 #define USE_BEEPER
29 #define BEEPER_PIN PB2
30 #define BEEPER_INVERTED
32 #define ENABLE_DSHOT_DMAR DSHOT_DMAR_ON
34 #define USE_TARGET_CONFIG
36 // *************** Gyro & ACC **********************
37 #define USE_SPI
38 #define USE_SPI_DEVICE_1
40 #define SPI1_SCK_PIN PA5
41 #define SPI1_MISO_PIN PA6
42 #define SPI1_MOSI_PIN PA7
43 #define SPI1_NSS_PIN PC4
45 #define USE_GYRO
46 #define USE_GYRO_SPI_MPU6000
47 #define USE_GYRO_SPI_MPU6500
49 #define GYRO_1_SPI_INSTANCE SPI1
50 #define GYRO_1_CS_PIN SPI1_NSS_PIN
51 #define GYRO_1_ALIGN CW90_DEG
53 #define GYRO_2_SPI_INSTANCE SPI1
54 #define GYRO_2_CS_PIN PC3
55 #define GYRO_2_EXTI_PIN NONE
56 #define GYRO_2_ALIGN CW0_DEG
58 #define USE_ACC
59 #define USE_ACC_SPI_MPU6000
60 #define USE_ACC_SPI_MPU6500
62 // *************** OSD **************************
64 #define USE_SPI_DEVICE_3
65 #define SPI3_SCK_PIN PB3
66 #define SPI3_MISO_PIN PB4
67 #define SPI3_MOSI_PIN PB5
69 #define USE_MAX7456
70 #define MAX7456_SPI_INSTANCE SPI3
71 #define MAX7456_SPI_CS_PIN PD2
74 // *************** FLASH *****************************
75 #define USE_SPI_DEVICE_2
76 #define SPI2_SCK_PIN PB13
77 #define SPI2_MISO_PIN PB14
78 #define SPI2_MOSI_PIN PB15
81 #define USE_FLASHFS
82 #define USE_FLASH_M25P16
83 #define FLASH_CS_PIN PB12
84 #define FLASH_SPI_INSTANCE SPI2
85 #define ENABLE_BLACKBOX_LOGGING_ON_SPIFLASH_BY_DEFAULT
87 // *************** UART *****************************
88 #define USE_VCP
89 #define USE_USB_DETECT
92 #define USE_UART1
93 #define UART1_TX_PIN PA9
95 #define USE_UART2
96 #define UART2_TX_PIN PA2
98 #define USE_UART3
99 #define UART3_RX_PIN PC11
100 #define UART3_TX_PIN PC10
102 #define USE_UART4
103 #define UART4_TX_PIN PA0
105 #define USE_UART5
106 #define UART5_TX_PIN PC12
108 #define USE_UART6
109 #define UART6_RX_PIN PC7
110 #define UART6_TX_PIN PC6
113 #define USE_SOFTSERIAL1
115 #define SERIAL_PORT_COUNT 8
117 #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL
118 #define SERIALRX_PROVIDER SERIALRX_SBUS
119 #define SERIALRX_UART SERIAL_PORT_USART6
121 // *************** I2C *****************************
123 #define USE_I2C
124 #define USE_I2C_DEVICE_1
125 #define I2C_DEVICE (I2CDEV_1)
126 #define I2C1_SCL PB8
127 #define I2C1_SDA PB9
129 // *************** PIN *****************************
131 #define USE_PINIO
132 #define PINIO1_PIN PA10
133 #define USE_PINIOBOX
135 // *************** BARO ****************************
137 #define USE_BARO
138 #define USE_BARO_BMP280
139 #define BARO_I2C_INSTANCE I2C_DEVICE
141 // *************** ADC *****************************
142 #define USE_ADC
143 #define CURRENT_METER_ADC_PIN PC1
144 #define VBAT_ADC_PIN PC0
145 #define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC
146 #define DEFAULT_CURRENT_METER_SOURCE CURRENT_METER_ADC
147 #define CURRENT_METER_SCALE_DEFAULT 179
149 #define DEFAULT_FEATURES (FEATURE_OSD | FEATURE_AIRMODE)
151 #define USE_ESCSERIAL
153 #define TARGET_IO_PORTA 0xffff
154 #define TARGET_IO_PORTB 0xffff
155 #define TARGET_IO_PORTC 0xffff
156 #define TARGET_IO_PORTD 0xffff
158 #define USABLE_TIMER_CHANNEL_COUNT 6
159 #define USED_TIMERS (TIM_N(1)|TIM_N(2)|TIM_N(3)|TIM_N(8))