|
| 1 | +/* |
| 2 | + * This file is part of INAV. |
| 3 | + * |
| 4 | + * INAV is free software: you can redistribute it and/or modify |
| 5 | + * it under the terms of the GNU General Public License as published by |
| 6 | + * the Free Software Foundation, either version 3 of the License, or |
| 7 | + * (at your option) any later version. |
| 8 | + * |
| 9 | + * INAV is distributed in the hope that it will be useful, |
| 10 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | + * GNU General Public License for more details. |
| 13 | + * |
| 14 | + * You should have received a copy of the GNU General Public License |
| 15 | + * along with INAV. If not, see <http://www.gnu.org/licenses/>. |
| 16 | + */ |
| 17 | + |
| 18 | + |
| 19 | +#pragma once |
| 20 | + |
| 21 | +#define TARGET_BOARD_IDENTIFIER "H743" |
| 22 | + |
| 23 | +#define USBD_PRODUCT_STRING "AETH743Basic" |
| 24 | + |
| 25 | +#define USE_TARGET_CONFIG |
| 26 | + |
| 27 | +#define LED0 PE3 |
| 28 | +#define LED1 PE4 |
| 29 | + |
| 30 | +#define BEEPER PA15 |
| 31 | +#define BEEPER_INVERTED |
| 32 | +#define BEEPER_PWM_FREQUENCY 2000 |
| 33 | + |
| 34 | +// *************** IMU generic *********************** |
| 35 | +#define USE_DUAL_GYRO |
| 36 | +#define USE_TARGET_IMU_HARDWARE_DESCRIPTORS |
| 37 | +#define USE_SPI |
| 38 | +#define USE_IMU_ICM42605 |
| 39 | + |
| 40 | +// *************** SPI1 IMU0 ICM42688 **************** |
| 41 | +#define USE_SPI_DEVICE_1 |
| 42 | +#define SPI1_SCK_PIN PA5 |
| 43 | +#define SPI1_MISO_PIN PA6 |
| 44 | +#define SPI1_MOSI_PIN PD7 |
| 45 | + |
| 46 | +#define IMU_ICM42688_0_ALIGN CW0_DEG_FLIP |
| 47 | +#define ICM42688_0_SPI_BUS BUS_SPI1 |
| 48 | +#define ICM42688_0_CS_PIN PC15 |
| 49 | + |
| 50 | +// *************** SPI4 IMU1 ICM42688 ************** |
| 51 | +#define USE_SPI_DEVICE_4 |
| 52 | +#define SPI4_SCK_PIN PE12 |
| 53 | +#define SPI4_MISO_PIN PE13 |
| 54 | +#define SPI4_MOSI_PIN PE14 |
| 55 | + |
| 56 | +#define IMU_ICM42688_1_ALIGN CW90_DEG_FLIP |
| 57 | +#define ICM42688_1_SPI_BUS BUS_SPI4 |
| 58 | +#define ICM42688_1_CS_PIN PC13 |
| 59 | + |
| 60 | +// *************** SPI2 OSD *********************** |
| 61 | +#define USE_SPI_DEVICE_2 |
| 62 | +#define SPI2_SCK_PIN PB13 |
| 63 | +#define SPI2_MISO_PIN PB14 |
| 64 | +#define SPI2_MOSI_PIN PB15 |
| 65 | + |
| 66 | +#define USE_MAX7456 |
| 67 | +#define MAX7456_SPI_BUS BUS_SPI2 |
| 68 | +#define MAX7456_CS_PIN PB12 |
| 69 | + |
| 70 | +// *************** I2C /Baro/Mag ********************* |
| 71 | +#define USE_I2C |
| 72 | +#define USE_I2C_DEVICE_1 |
| 73 | +#define I2C1_SCL PB6 |
| 74 | +#define I2C1_SDA PB7 |
| 75 | + |
| 76 | +#define USE_I2C_DEVICE_2 |
| 77 | +#define I2C2_SCL PB10 |
| 78 | +#define I2C2_SDA PB11 |
| 79 | + |
| 80 | +#define USE_BARO |
| 81 | +#define BARO_I2C_BUS BUS_I2C2 |
| 82 | +#define USE_BARO_SPL06 |
| 83 | + |
| 84 | +#define USE_MAG |
| 85 | +#define MAG_I2C_BUS BUS_I2C1 |
| 86 | +#define USE_MAG_ALL |
| 87 | + |
| 88 | +#define TEMPERATURE_I2C_BUS BUS_I2C2 |
| 89 | +#define PITOT_I2C_BUS BUS_I2C2 |
| 90 | + |
| 91 | +#define USE_RANGEFINDER |
| 92 | +#define RANGEFINDER_I2C_BUS BUS_I2C1 |
| 93 | + |
| 94 | +// *************** UART ***************************** |
| 95 | +#define USE_VCP |
| 96 | + |
| 97 | +#define USE_UART1 |
| 98 | +#define UART1_TX_PIN PA9 |
| 99 | +#define UART1_RX_PIN PA10 |
| 100 | + |
| 101 | +#define USE_UART2 |
| 102 | +#define UART2_TX_PIN PD5 |
| 103 | +#define UART2_RX_PIN PD6 |
| 104 | + |
| 105 | +#define USE_UART3 |
| 106 | +#define UART3_TX_PIN PD8 |
| 107 | +#define UART3_RX_PIN PD9 |
| 108 | + |
| 109 | +#define USE_UART4 |
| 110 | +#define UART4_TX_PIN PB9 |
| 111 | +#define UART4_RX_PIN PB8 |
| 112 | + |
| 113 | +#define USE_UART6 |
| 114 | +#define UART6_TX_PIN PC6 |
| 115 | +#define UART6_RX_PIN PC7 |
| 116 | + |
| 117 | +#define USE_UART7 |
| 118 | +#define UART7_TX_PIN PE8 |
| 119 | +#define UART7_RX_PIN PE7 |
| 120 | + |
| 121 | +#define USE_UART8 |
| 122 | +#define UART8_TX_PIN PE1 |
| 123 | +#define UART8_RX_PIN PE0 |
| 124 | + |
| 125 | +#define SERIAL_PORT_COUNT 8 |
| 126 | + |
| 127 | +#define DEFAULT_RX_TYPE RX_TYPE_SERIAL |
| 128 | +#define SERIALRX_PROVIDER SERIALRX_CRSF |
| 129 | +#define SERIALRX_UART SERIAL_PORT_USART6 |
| 130 | + |
| 131 | +#define GPS_UART SERIAL_PORT_USART2 |
| 132 | + |
| 133 | +// *************** SDIO SD BLACKBOX******************* |
| 134 | +#define USE_SDCARD |
| 135 | +#define USE_SDCARD_SDIO |
| 136 | +#define SDCARD_SDIO_DEVICE SDIODEV_1 |
| 137 | +#define SDCARD_SDIO_4BIT |
| 138 | + |
| 139 | +#define ENABLE_BLACKBOX_LOGGING_ON_SDCARD_BY_DEFAULT |
| 140 | + |
| 141 | +// *************** ADC ***************************** |
| 142 | +#define USE_ADC |
| 143 | +#define ADC_INSTANCE ADC1 |
| 144 | + |
| 145 | +#define ADC_CHANNEL_1_PIN PC0 //ADC123 VBAT1 |
| 146 | +#define ADC_CHANNEL_2_PIN PC1 //ADC123 CURR1 |
| 147 | +#define ADC_CHANNEL_3_PIN PC5 //ADC12 RSSI |
| 148 | +#define ADC_CHANNEL_4_PIN PC4 //ADC12 AirS |
| 149 | +#define ADC_CHANNEL_5_PIN PA4 //ADC12 VB2 |
| 150 | +#define ADC_CHANNEL_6_PIN PA7 //ADC12 CU2 |
| 151 | + |
| 152 | +#define VBAT_ADC_CHANNEL ADC_CHN_1 |
| 153 | +#define CURRENT_METER_ADC_CHANNEL ADC_CHN_2 |
| 154 | +#define RSSI_ADC_CHANNEL ADC_CHN_3 |
| 155 | +#define AIRSPEED_ADC_CHANNEL ADC_CHN_4 |
| 156 | + |
| 157 | +// *************** PINIO *************************** |
| 158 | +#define USE_PINIO |
| 159 | +#define USE_PINIOBOX |
| 160 | +#define PINIO1_PIN PD10 // 9Vsw |
| 161 | +#define PINIO2_PIN PD11 // Camera switcher |
| 162 | + |
| 163 | +// *************** LEDSTRIP ************************ |
| 164 | +#define USE_LED_STRIP |
| 165 | +#define WS2811_PIN PA8 |
| 166 | + |
| 167 | +#define DEFAULT_FEATURES (FEATURE_OSD | FEATURE_TELEMETRY | FEATURE_CURRENT_METER | FEATURE_VBAT | FEATURE_TX_PROF_SEL | FEATURE_BLACKBOX) |
| 168 | +#define CURRENT_METER_SCALE 160 |
| 169 | + |
| 170 | +#define USE_SERIAL_4WAY_BLHELI_INTERFACE |
| 171 | + |
| 172 | +#define TARGET_IO_PORTA (0xffff & ~(BIT(14) | BIT(13))) |
| 173 | +#define TARGET_IO_PORTB 0xffff |
| 174 | +#define TARGET_IO_PORTC 0xffff |
| 175 | +#define TARGET_IO_PORTD 0xffff |
| 176 | +#define TARGET_IO_PORTE 0xffff |
| 177 | + |
| 178 | +#define MAX_PWM_OUTPUT_PORTS 15 |
| 179 | +#define USE_DSHOT |
| 180 | +#define USE_ESC_SENSOR |
| 181 | + |
0 commit comments