-
Notifications
You must be signed in to change notification settings - Fork 205
add AEROH7DIGITAL #900
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
haslinghuis
merged 10 commits into
betaflight:master
from
michael-cerasulo:feat/add-aeroh7digital
Sep 17, 2025
Merged
add AEROH7DIGITAL #900
Changes from 3 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a095928
add AEROH7DIGITAL
michael-cerasulo ba69d18
fix: update timer map, remove ADC2, default voltage meter scale
michael-cerasulo cf5830d
fix: remove USE_MAG, USE_GPS (user flags)
michael-cerasulo 3b66869
Apply suggestions from code review
michael-cerasulo dbf9c7c
Update configs/AEROH7DIGITAL/config.h
michael-cerasulo fcfc379
Apply suggestion from @ot0tot
haslinghuis c286c73
Apply suggestion from @ot0tot
haslinghuis e7d43e6
Apply suggestion from @ot0tot
haslinghuis f361ebc
Update configs/AEROH7DIGITAL/config.h
haslinghuis e4f293b
Refactor config.h for improved readability
haslinghuis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| /* | ||
| * This file is part of Betaflight. | ||
| * | ||
| * Betaflight is free software. You can redistribute this software | ||
| * and/or modify this software under the terms of the GNU General | ||
| * Public License as published by the Free Software Foundation, | ||
| * either version 3 of the License, or (at your option) any later | ||
| * version. | ||
| * | ||
| * Betaflight is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
| * | ||
| * See the GNU General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public | ||
| * License along with this software. | ||
| * | ||
| * If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #define FC_TARGET_MCU STM32H743 | ||
|
|
||
| #define BOARD_NAME AEROH7DIGITAL | ||
| #define MANUFACTURER_ID AERO | ||
|
|
||
| #define SYSTEM_HSE_MHZ 16 | ||
|
|
||
| #define USE_ACC | ||
| #define USE_ACC_SPI_ICM42688P | ||
| #define USE_DSHOT | ||
| #define USE_DSHOT_BITBANG | ||
michael-cerasulo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| #define USE_GYRO | ||
| #define USE_GYRO_SPI_ICM42688P | ||
| #define USE_GYRO_CLKIN | ||
| #define USE_BARO | ||
| #define USE_BARO_DPS310 | ||
| #define USE_SDCARD | ||
| #define USE_PINIO | ||
| #define USE_PINIOBOX | ||
michael-cerasulo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| #define MOTOR1_PIN PE9 | ||
| #define MOTOR2_PIN PE11 | ||
| #define MOTOR3_PIN PE13 | ||
| #define MOTOR4_PIN PE14 | ||
| #define MOTOR5_PIN PD12 | ||
| #define MOTOR6_PIN PD13 | ||
| #define MOTOR7_PIN PD14 | ||
| #define MOTOR8_PIN PD15 | ||
| #define SERVO1_PIN PC6 | ||
| #define SERVO2_PIN PC7 | ||
|
|
||
| #define UART2_TX_PIN PA2 | ||
| #define UART4_TX_PIN PD1 | ||
| #define UART5_TX_PIN PB13 | ||
| #define UART8_TX_PIN PE1 | ||
| #define UART2_RX_PIN PA3 | ||
| #define USART3_RX_PIN PD9 // ESC TELEMETRY | ||
michael-cerasulo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| #define UART4_RX_PIN PD0 | ||
| #define UART5_RX_PIN PB12 | ||
| #define UART7_RX_PIN PE7 // SBUS DJI | ||
| #define UART8_RX_PIN PE0 | ||
|
|
||
| #define I2C1_SCL_PIN PB8 | ||
| #define I2C4_SCL_PIN PB6 | ||
| #define I2C1_SDA_PIN PB9 | ||
| #define I2C4_SDA_PIN PB7 | ||
|
|
||
| #define LED0_PIN PD8 | ||
| #define LED1_PIN PB14 | ||
| #define LED2_PIN PB15 | ||
|
|
||
| #define SPI1_SCK_PIN PA5 | ||
| #define SPI1_SDI_PIN PA6 | ||
| #define SPI1_SDO_PIN PA7 | ||
|
|
||
| #define ADC_VBAT_PIN PA0 | ||
| #define ADC_CURR_PIN PA1 | ||
|
|
||
| #define SDIO_CK_PIN PC12 | ||
| #define SDIO_CMD_PIN PD2 | ||
| #define SDIO_D0_PIN PC8 | ||
| #define SDIO_D1_PIN PC9 | ||
| #define SDIO_D2_PIN PC10 | ||
| #define SDIO_D3_PIN PC11 | ||
|
|
||
| #define PINIO1_PIN PE2 | ||
|
|
||
| #define GYRO_1_EXTI_PIN PB1 | ||
| #define GYRO_1_CS_PIN PB0 | ||
| #define GYRO_1_CLKIN_PIN PE5 | ||
|
|
||
| #define TIMER_PIN_MAPPING \ | ||
| TIMER_PIN_MAP( 0, PE9 , 1, 0) /* TIM1_CH1 */ \ | ||
| TIMER_PIN_MAP( 1, PE11, 1, 1) /* TIM1_CH2 */ \ | ||
| TIMER_PIN_MAP( 2, PE13, 1, 2) /* TIM1_CH3 */ \ | ||
| TIMER_PIN_MAP( 3, PE14, 1, 3) /* TIM1_CH4 */ \ | ||
| TIMER_PIN_MAP( 4, PD12, 1, 4) /* TIM4_CH1 */ \ | ||
| TIMER_PIN_MAP( 5, PD13, 1, 5) /* TIM4_CH2 */ \ | ||
| TIMER_PIN_MAP( 6, PD14, 1, 6) /* TIM4_CH3 */ \ | ||
| TIMER_PIN_MAP( 7, PD15, 1, 7) /* TIM4_CH4 NO DMA */ \ | ||
haslinghuis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
haslinghuis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| TIMER_PIN_MAP( 8, PC6 , 2, -1) /* TIM8_CH1 */ \ | ||
| TIMER_PIN_MAP( 9, PC7 , 2, -1) /* TIM8_CH2 */ \ | ||
haslinghuis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| TIMER_PIN_MAP(10, PE5 , 1, -1) /* TIM15_CH1 */ | ||
|
|
||
| #define ADC1_DMA_OPT 8 | ||
| #define ADC3_DMA_OPT 9 | ||
|
|
||
| #define BARO_I2C_INSTANCE I2CDEV_1 | ||
| #define MAG_I2C_INSTANCE I2CDEV_4 | ||
|
|
||
| #define DEFAULT_RX_FEATURE FEATURE_RX_SERIAL | ||
michael-cerasulo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| #define SERIALRX_UART SERIAL_PORT_UART4 | ||
| #define GPS_UART SERIAL_PORT_UART8 | ||
michael-cerasulo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| #define MSP_DISPLAYPORT_UART SERIAL_PORT_USART2 | ||
| #define ESC_SENSOR_UART SERIAL_PORT_USART3 | ||
|
|
||
| #define DEFAULT_BLACKBOX_DEVICE BLACKBOX_DEVICE_SDCARD | ||
| #define DEFAULT_CURRENT_METER_SOURCE CURRENT_METER_ADC | ||
| #define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC | ||
|
|
||
haslinghuis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| #define SDCARD_DETECT_PIN NONE | ||
| #define SDIO_DEVICE SDIODEV_1 | ||
| #define SDIO_USE_4BIT 1 | ||
|
|
||
| #define PINIO1_BOX 40 | ||
| #define PINIO1_CONFIG 129 | ||
| #define BOX_USER1_NAME "10V BEC" | ||
|
|
||
| #define GYRO_1_SPI_INSTANCE SPI1 | ||
| #define GYRO_1_ALIGN CW90_DEG | ||
|
|
||
| #define DEFAULT_GYRO_TO_USE GYRO_CONFIG_USE_GYRO_1 | ||
michael-cerasulo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.