|
| 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 | +#pragma once |
| 19 | + |
| 20 | +#define USE_TARGET_CONFIG |
| 21 | + |
| 22 | +#define TARGET_BOARD_IDENTIFIER "M7X8" |
| 23 | +#define USBD_PRODUCT_STRING "MAMBAF722_X8" |
| 24 | + |
| 25 | +// ******** Board LEDs ********************** |
| 26 | +#define LED0 PC15 |
| 27 | +#define LED1 PC14 |
| 28 | + |
| 29 | +// ******* Beeper *********** |
| 30 | +#define BEEPER PB2 |
| 31 | +#define BEEPER_INVERTED |
| 32 | + |
| 33 | +// ******* GYRO and ACC ******** |
| 34 | +#define USE_EXTI |
| 35 | +#define GYRO_INT_EXTI PC4 |
| 36 | +#define USE_MPU_DATA_READY_SIGNAL |
| 37 | + |
| 38 | +#define MPU6000_CS_PIN SPI1_NSS_PIN |
| 39 | +#define MPU6000_SPI_BUS BUS_SPI1 |
| 40 | + |
| 41 | +#define USE_IMU_MPU6000 |
| 42 | +#define IMU_MPU6000_ALIGN CW180_DEG |
| 43 | + |
| 44 | +#define USE_I2C |
| 45 | + |
| 46 | +#define USE_I2C_DEVICE_1 |
| 47 | +#define I2C1_SCL PB8 |
| 48 | +#define I2C1_SDA PB9 |
| 49 | +#define DEFAULT_I2C_BUS BUS_I2C1 |
| 50 | + |
| 51 | + |
| 52 | +// *************** Baro ************************** |
| 53 | +#define USE_BARO |
| 54 | +#define BARO_I2C_BUS DEFAULT_I2C_BUS |
| 55 | +#define USE_BARO_BMP280 |
| 56 | +#define USE_BARO_MS5611 |
| 57 | + |
| 58 | +//*********** Magnetometer / Compass ************* |
| 59 | +#define USE_MAG |
| 60 | +#define MAG_I2C_BUS DEFAULT_I2C_BUS |
| 61 | + |
| 62 | +#define USE_MAG_HMC5883 |
| 63 | +#define USE_MAG_QMC5883 |
| 64 | +#define USE_MAG_IST8310 |
| 65 | +#define USE_MAG_MAG3110 |
| 66 | +#define USE_MAG_LIS3MDL |
| 67 | + |
| 68 | +// ******* SERIAL ******** |
| 69 | +#define USE_VCP |
| 70 | +#define USE_UART1 |
| 71 | +#define USE_UART2 |
| 72 | +#define USE_UART3 |
| 73 | +#define USE_UART4 |
| 74 | +#define USE_UART5 |
| 75 | +#define USE_UART6 |
| 76 | + |
| 77 | +#define UART1_TX_PIN PB6 |
| 78 | +#define UART1_RX_PIN PB7 |
| 79 | + |
| 80 | +#define UART2_TX_PIN PA2 |
| 81 | +#define UART2_RX_PIN PA3 |
| 82 | + |
| 83 | +#define UART3_TX_PIN PB10 |
| 84 | +#define UART3_RX_PIN PB11 |
| 85 | + |
| 86 | +#define UART4_TX_PIN PA0 |
| 87 | +#define UART4_RX_PIN PA1 |
| 88 | + |
| 89 | +#define UART5_TX_PIN PC12 |
| 90 | +#define UART5_RX_PIN PD2 |
| 91 | + |
| 92 | +#define UART6_TX_PIN PC6 |
| 93 | +#define UART6_RX_PIN PC7 |
| 94 | + |
| 95 | +#define SERIAL_PORT_COUNT 7 |
| 96 | + |
| 97 | +// ******* SPI ******** |
| 98 | +#define USE_SPI |
| 99 | + |
| 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 |
| 105 | + |
| 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 |
| 111 | + |
| 112 | +#define USE_SPI_DEVICE_3 |
| 113 | +#define SPI3_NSS_PIN PA15 |
| 114 | +#define SPI3_SCK_PIN PC10 |
| 115 | +#define SPI3_MISO_PIN PC11 |
| 116 | +#define SPI3_MOSI_PIN PB5 |
| 117 | + |
| 118 | +// ******* ADC ******** |
| 119 | +#define USE_ADC |
| 120 | +#define ADC_CHANNEL_1_PIN PC1 |
| 121 | +#define ADC_CHANNEL_2_PIN PC2 |
| 122 | +#define ADC_CHANNEL_3_PIN PC3 |
| 123 | + |
| 124 | +#define VBAT_ADC_CHANNEL ADC_CHN_1 |
| 125 | +#define RSSI_ADC_CHANNEL ADC_CHN_2 |
| 126 | +#define CURRENT_METER_ADC_CHANNEL ADC_CHN_3 |
| 127 | + |
| 128 | +#define VBAT_SCALE_DEFAULT 1100 |
| 129 | + |
| 130 | +// ******* OSD ******** |
| 131 | +#define USE_MAX7456 |
| 132 | +#define MAX7456_SPI_BUS BUS_SPI2 |
| 133 | +#define MAX7456_CS_PIN SPI2_NSS_PIN |
| 134 | + |
| 135 | +//******* FLASH ******** |
| 136 | +#define USE_FLASHFS |
| 137 | +#define USE_FLASH_M25P16 |
| 138 | +#define M25P16_CS_PIN SPI3_NSS_PIN |
| 139 | +#define M25P16_SPI_BUS BUS_SPI3 |
| 140 | + |
| 141 | +#define ENABLE_BLACKBOX_LOGGING_ON_SPIFLASH_BY_DEFAULT |
| 142 | + |
| 143 | +//************ LEDSTRIP ***************** |
| 144 | +#define USE_LED_STRIP |
| 145 | +#define WS2811_PIN PB3 |
| 146 | + |
| 147 | +// ******* FEATURES ******** |
| 148 | +#define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL |
| 149 | +#define SERIALRX_UART SERIAL_PORT_USART1 |
| 150 | +#define SERIALRX_PROVIDER SERIALRX_SBUS |
| 151 | + |
| 152 | +#define DEFAULT_FEATURES (FEATURE_OSD | FEATURE_TELEMETRY) |
| 153 | + |
| 154 | +#define TARGET_IO_PORTA 0xffff |
| 155 | +#define TARGET_IO_PORTB 0xffff |
| 156 | +#define TARGET_IO_PORTC 0xffff |
| 157 | +#define TARGET_IO_PORTD (BIT(2)) |
| 158 | + |
| 159 | +#define MAX_PWM_OUTPUT_PORTS 8 |
| 160 | +#define TARGET_MOTOR_COUNT 8 |
| 161 | + |
| 162 | +// ESC-related features |
| 163 | +#define USE_DSHOT |
| 164 | +#define USE_ESC_SENSOR |
| 165 | +#define USE_SERIAL_4WAY_BLHELI_INTERFACE |
| 166 | + |
| 167 | +#define USE_RANGEFINDER |
| 168 | +#define RANGEFINDER_I2C_BUS DEFAULT_I2C_BUS |
| 169 | +#define TEMPERATURE_I2C_BUS DEFAULT_I2C_BUS |
| 170 | +#define PITOT_I2C_BUS DEFAULT_I2C_BUS |
| 171 | + |
| 172 | +#define BNO055_I2C_BUS DEFAULT_I2C_BUS |
0 commit comments