Skip to content

Commit ec2106a

Browse files
authored
Merge pull request #10600 from villivateur/master
Add new target: AET-H743-Basic
2 parents 3f87202 + 0d90503 commit ec2106a

File tree

4 files changed

+271
-0
lines changed

4 files changed

+271
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target_stm32h743xi(AETH743Basic)

src/main/target/AETH743Basic/config.c

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
* This file is part of Cleanflight.
3+
*
4+
* Cleanflight 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+
* Cleanflight 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 Cleanflight. If not, see <http://www.gnu.org/licenses/>.
16+
*/
17+
18+
#include <stdint.h>
19+
20+
#include "platform.h"
21+
22+
#include "fc/fc_msp_box.h"
23+
#include "fc/config.h"
24+
25+
#include "io/piniobox.h"
26+
#include "io/serial.h"
27+
28+
29+
void targetConfiguration(void)
30+
{
31+
pinioBoxConfigMutable()->permanentId[0] = BOX_PERMANENT_ID_USER1;
32+
pinioBoxConfigMutable()->permanentId[1] = BOX_PERMANENT_ID_USER2;
33+
serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART7)].functionMask = FUNCTION_MSP;
34+
serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART7)].msp_baudrateIndex = BAUD_115200;
35+
beeperConfigMutable()->pwmMode = true;
36+
}

src/main/target/AETH743Basic/target.c

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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+
#include <stdint.h>
19+
20+
#include "platform.h"
21+
22+
#include "drivers/bus.h"
23+
#include "drivers/io.h"
24+
#include "drivers/pwm_mapping.h"
25+
#include "drivers/timer.h"
26+
#include "drivers/pinio.h"
27+
#include "drivers/sensor.h"
28+
29+
BUSDEV_REGISTER_SPI_TAG(busdev_icm42688_0, DEVHW_ICM42605, ICM42688_0_SPI_BUS, ICM42688_0_CS_PIN, NONE, 0, DEVFLAGS_NONE, IMU_ICM42688_0_ALIGN);
30+
BUSDEV_REGISTER_SPI_TAG(busdev_icm42688_1, DEVHW_ICM42605, ICM42688_1_SPI_BUS, ICM42688_1_CS_PIN, NONE, 2, DEVFLAGS_NONE, IMU_ICM42688_1_ALIGN);
31+
32+
timerHardware_t timerHardware[] = {
33+
DEF_TIM(TIM3, CH3, PB0, TIM_USE_OUTPUT_AUTO, 0, 0), // S1
34+
DEF_TIM(TIM3, CH4, PB1, TIM_USE_OUTPUT_AUTO, 0, 1), // S2
35+
36+
DEF_TIM(TIM5, CH1, PA0, TIM_USE_OUTPUT_AUTO, 0, 2), // S3
37+
DEF_TIM(TIM5, CH2, PA1, TIM_USE_OUTPUT_AUTO, 0, 3), // S4
38+
DEF_TIM(TIM5, CH3, PA2, TIM_USE_OUTPUT_AUTO, 0, 4), // S5
39+
DEF_TIM(TIM5, CH4, PA3, TIM_USE_OUTPUT_AUTO, 0, 5), // S6
40+
41+
DEF_TIM(TIM4, CH1, PD12, TIM_USE_OUTPUT_AUTO, 0, 6), // S7
42+
DEF_TIM(TIM4, CH2, PD13, TIM_USE_OUTPUT_AUTO, 0, 7), // S8
43+
DEF_TIM(TIM4, CH3, PD14, TIM_USE_OUTPUT_AUTO, 0, 0), // S9
44+
DEF_TIM(TIM4, CH4, PD15, TIM_USE_OUTPUT_AUTO, 0, 0), // S10 DMA_NONE
45+
46+
DEF_TIM(TIM15, CH1, PE5, TIM_USE_OUTPUT_AUTO, 0, 0), // S11
47+
DEF_TIM(TIM15, CH2, PE6, TIM_USE_OUTPUT_AUTO, 0, 0), // S12 DMA_NONE
48+
49+
DEF_TIM(TIM1, CH1, PA8, TIM_USE_LED, 0, 9), // LED_2812
50+
DEF_TIM(TIM2, CH1, PA15, TIM_USE_BEEPER, 0, 0), // BEEPER PWM
51+
};
52+
53+
const int timerHardwareCount = sizeof(timerHardware) / sizeof(timerHardware[0]);

src/main/target/AETH743Basic/target.h

+181
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
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

Comments
 (0)