default f411 boards with timer 1 use to timer dshot
[betaflight.git] / src / main / target / SKYZONEF405 / target.h
blob4d2ddb719dd7f7f5bda22744ed7575a6bb631a09
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 "SKF4"
24 #define TARGET_MANUFACTURER_IDENTIFIER "SKYZ"
26 #define USBD_PRODUCT_STRING "skyzone F405"
28 #define ENABLE_DSHOT_DMAR DSHOT_DMAR_ON
30 #define LED0_PIN PC14
32 #define USE_BEEPER
33 #define BEEPER_PIN PC13
34 #define BEEPER_INVERTED
36 #define USE_SPI
37 #define USE_SPI_DEVICE_1
39 #define SPI1_SCK_PIN PA5
40 #define SPI1_MISO_PIN PA6
41 #define SPI1_MOSI_PIN PA7
43 #define USE_EXTI
44 #define USE_GYRO_EXTI
45 #define GYRO_1_EXTI_PIN PC4
46 #define USE_MPU_DATA_READY_SIGNAL
48 #define USE_GYRO
49 #define USE_ACC
50 #define USE_GYRO_SPI_MPU6000
51 #define USE_ACC_SPI_MPU6000
52 #define USE_GYRO_SPI_ICM20689
53 #define USE_ACC_SPI_ICM20689
55 #define GYRO_1_CS_PIN PA4
56 #define GYRO_1_SPI_INSTANCE SPI1
58 #define GYRO_1_ALIGN CW90_DEG
60 #define USE_I2C
61 #define USE_I2C_DEVICE_1
62 #define I2C_DEVICE (I2CDEV_1)
63 #define I2C1_SCL PB8
64 #define I2C1_SDA PB9
66 #define USE_BARO
67 #define BARO_I2C_INSTANCE (I2CDEV_1)
68 #define USE_BARO_BMP085
69 #define USE_BARO_BMP280
70 #define USE_BARO_MS5611
72 #define USE_MAG
73 #define MAG_I2C_INSTANCE (I2CDEV_1)
74 #define USE_MAG_HMC5883
75 #define USE_MAG_LIS3MDL
77 #define USE_SPI_DEVICE_2
78 #define SPI2_SCK_PIN PB13
79 #define SPI2_MISO_PIN PB14
80 #define SPI2_MOSI_PIN PC3
82 #define ENABLE_BLACKBOX_LOGGING_ON_SPIFLASH_BY_DEFAULT
83 #define USE_FLASHFS
84 #define USE_FLASH_M25P16
85 #define FLASH_CS_PIN PB12
86 #define FLASH_SPI_INSTANCE SPI2
88 #define USE_SPI_DEVICE_3
89 #define SPI3_SCK_PIN PC10
90 #define SPI3_MISO_PIN PC11
91 #define SPI3_MOSI_PIN PB5
93 #define USE_OSD
94 #define USE_MAX7456
95 #define MAX7456_SPI_INSTANCE SPI3
96 #define MAX7456_SPI_CS_PIN PA15
98 #define USE_VCP
100 #define USE_UART1
101 #define UART1_RX_PIN PA10
102 #define UART1_TX_PIN PA9
104 #define USE_UART2
105 #define UART2_RX_PIN PA3
106 #define UART2_TX_PIN PA2
108 #define USE_UART3
109 #define UART3_RX_PIN PB11
110 #define UART3_TX_PIN PB10
112 #define USE_UART4
113 #define UART4_RX_PIN PA1
114 #define UART4_TX_PIN PA0
116 #define USE_UART5
117 #define UART5_RX_PIN PD2
118 #define UART5_TX_PIN PC12
120 #define USE_SOFTSERIAL1
121 #define USE_SOFTSERIAL2
123 #define SERIAL_PORT_COUNT 8
125 #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL
126 #define SERIALRX_PROVIDER SERIALRX_SBUS
127 #define SERIALRX_UART SERIAL_PORT_USART2
128 #define SBUS_TELEMETRY_UART SERIAL_PORT_USART3
130 #define USE_ADC
131 #define ADC_INSTANCE ADC1 // Default added
132 #define ADC1_DMA_OPT 0 // DMA 2 Stream 0 Channel 0
134 #define VBAT_ADC_PIN PC2
135 #define CURRENT_METER_ADC_PIN PC1
136 #define RSSI_ADC_PIN PA0
138 #define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC
139 #define DEFAULT_CURRENT_METER_SOURCE CURRENT_METER_ADC
141 #define DEFAULT_FEATURES ( FEATURE_TELEMETRY | FEATURE_OSD )
143 #define USE_ESCSERIAL
144 #define ESCSERIAL_TIMER_TX_PIN PA3
146 #define TARGET_IO_PORTA 0xffff
147 #define TARGET_IO_PORTB 0xffff
148 #define TARGET_IO_PORTC 0xffff
149 #define TARGET_IO_PORTD (BIT(2))
151 #define USABLE_TIMER_CHANNEL_COUNT 11
152 #define USED_TIMERS (TIM_N(1)|TIM_N(2)|TIM_N(3)|TIM_N(4)|TIM_N(8)|TIM_N(12))