Merge pull request #11198 from SteveCEvans/sce_rc2
[betaflight.git] / src / main / target / TMOTORF7 / target.h
blob501f9d10b9e22cb736022c399f5ba354e362d3af
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 "TMR7"
24 #define USBD_PRODUCT_STRING "TMOTORF7"
25 #define TARGET_MANUFACTURER_IDENTIFIER "TMTR"
27 #define LED0_PIN PB2
29 #define USE_BEEPER
30 #define BEEPER_PIN PC13
31 #define BEEPER_INVERTED
33 #define ENABLE_DSHOT_DMAR DSHOT_DMAR_OFF
35 #define USE_EXTI
36 #define USE_GYRO_EXTI
37 #define GYRO_1_EXTI_PIN PC4
38 #define USE_MPU_DATA_READY_SIGNAL
40 #define USE_GYRO
41 #define USE_GYRO_SPI_MPU6000
42 #define USE_GYRO_SPI_MPU6500
43 #define GYRO_1_CS_PIN SPI1_NSS_PIN
44 #define GYRO_1_SPI_INSTANCE SPI1
45 #define GYRO_1_ALIGN CW0_DEG
47 #define USE_ACC
48 #define USE_ACC_SPI_MPU6000
49 #define USE_ACC_SPI_MPU6500
51 #define USE_BARO
52 #define USE_BARO_SPI_BMP280
53 #define DEFAULT_BARO_SPI_BMP280
54 #define BARO_SPI_INSTANCE SPI3
55 #define BARO_CS_PIN PC15
57 #define USE_MAG
58 #define USE_MAG_HMC5883
59 #define USE_MAG_QMC5883
60 #define MAG_I2C_INSTANCE (I2CDEV_2)
62 #define USE_MAX7456
63 #define MAX7456_SPI_INSTANCE SPI2
64 #define MAX7456_SPI_CS_PIN SPI2_NSS_PIN
66 #define USE_FLASHFS
67 #define USE_FLASH_M25P16
68 #define FLASH_SPI_INSTANCE SPI3
69 #define FLASH_CS_PIN SPI3_NSS_PIN
70 #define ENABLE_BLACKBOX_LOGGING_ON_SPIFLASH_BY_DEFAULT
72 #define USE_VCP
74 #define USE_UART1
75 #define UART1_RX_PIN PA10
76 #define UART1_TX_PIN PA9
78 #define USE_UART2
79 #define UART2_RX_PIN PA3
80 #define UART2_TX_PIN PA2
82 #define USE_UART3
83 #define UART3_RX_PIN PC11
84 #define UART3_TX_PIN PC10
86 #define USE_UART4
87 #define UART4_RX_PIN PA1
88 #define UART4_TX_PIN PA0
90 #define USE_UART5
91 #define UART5_RX_PIN PD2
92 #define UART5_TX_PIN PC12
94 #define SERIAL_PORT_COUNT 6
96 #define USE_ESCSERIAL
97 #define ESCSERIAL_TIMER_TX_PIN PA15
99 #define USE_SPI
100 #define USE_SPI_DEVICE_1
101 #define SPI1_NSS_PIN PA4
102 #define SPI1_SCK_PIN PA5
103 #define SPI1_MISO_PIN PA6
104 #define SPI1_MOSI_PIN PA7
106 #define USE_SPI_DEVICE_2
107 #define SPI2_NSS_PIN PB12
108 #define SPI2_SCK_PIN PB13
109 #define SPI2_MISO_PIN PB14
110 #define SPI2_MOSI_PIN PB15
112 #define USE_SPI_DEVICE_3
113 #define SPI3_NSS_PIN PC8
114 #define SPI3_SCK_PIN PB3
115 #define SPI3_MISO_PIN PB4
116 #define SPI3_MOSI_PIN PB5
118 #define USE_I2C
119 #define USE_I2C_DEVICE_2
120 #define I2C2_SCL PB10
121 #define I2C2_SDA PB11
122 #define I2C_DEVICE (I2CDEV_2)
124 #define USE_ADC
125 #define VBAT_ADC_PIN PC1
126 #define CURRENT_METER_ADC_PIN PC2
127 #define RSSI_ADC_PIN PC3
128 #define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC
129 #define DEFAULT_CURRENT_METER_SOURCE CURRENT_METER_ADC
131 #define SERIALRX_PROVIDER SERIALRX_SBUS
132 #define SERIALRX_UART SERIAL_PORT_UART5
133 #define SBUS_TELEMETRY_UART SERIAL_PORT_USART1
135 #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL
136 #define DEFAULT_FEATURES ( FEATURE_OSD | FEATURE_TELEMETRY )
138 #define TARGET_IO_PORTA ( 0xffff )
139 #define TARGET_IO_PORTB ( 0xffff )
140 #define TARGET_IO_PORTC ( 0xffff )
141 #define TARGET_IO_PORTD ( 0x0004 )
143 #define USABLE_TIMER_CHANNEL_COUNT 9
144 #define USED_TIMERS ( TIM_N(1) | TIM_N(2) | TIM_N(3) | TIM_N(4) | TIM_N(8) | TIM_N(11) )