Skip to content

Commit 611d26f

Browse files
authored
Merge pull request #7809 from iNavFlight/dzikuvx-mamba-f722-x8-target
Mamba F722_X8 target
2 parents 1a60158 + 18da0f2 commit 611d26f

File tree

4 files changed

+277
-0
lines changed

4 files changed

+277
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target_stm32f722xe(MAMBAF722_X8)

src/main/target/MAMBAF722_X8/config.c

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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 <stdbool.h>
19+
#include <stdint.h>
20+
21+
#include <platform.h>
22+
23+
#include "common/axis.h"
24+
25+
#include "config/config_master.h"
26+
#include "config/feature.h"
27+
28+
#include "drivers/sensor.h"
29+
#include "drivers/pwm_esc_detect.h"
30+
#include "drivers/pwm_output.h"
31+
#include "drivers/serial.h"
32+
33+
#include "fc/rc_controls.h"
34+
35+
#include "flight/failsafe.h"
36+
#include "flight/mixer.h"
37+
#include "flight/pid.h"
38+
39+
#include "rx/rx.h"
40+
41+
#include "io/serial.h"
42+
43+
#include "sensors/battery.h"
44+
#include "sensors/sensors.h"
45+
46+
#include "telemetry/telemetry.h"
47+
48+
void targetConfiguration(void)
49+
{
50+
51+
/*
52+
* UART1 is SerialRX
53+
*/
54+
serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART1)].functionMask = FUNCTION_RX_SERIAL;
55+
56+
/*
57+
* Enable MSP at 115200 at UART4
58+
*/
59+
serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART4)].functionMask = FUNCTION_MSP;
60+
serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART4)].msp_baudrateIndex = BAUD_115200;
61+
}

src/main/target/MAMBAF722_X8/target.c

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
#include <stdint.h>
20+
21+
#include "platform.h"
22+
#include "drivers/io.h"
23+
#include "drivers/timer.h"
24+
#include "drivers/pwm_mapping.h"
25+
#include "drivers/bus.h"
26+
27+
const timerHardware_t timerHardware[] = {
28+
DEF_TIM(TIM11, CH1, PB9, TIM_USE_PPM, 0, 0 ), // PPM IN
29+
30+
DEF_TIM(TIM8, CH3, PC8, TIM_USE_MC_MOTOR | TIM_USE_FW_MOTOR, 0, 0 ), // S1
31+
DEF_TIM(TIM8, CH4, PC9, TIM_USE_MC_MOTOR | TIM_USE_FW_MOTOR, 0, 0 ), // S2
32+
DEF_TIM(TIM1, CH1, PA8, TIM_USE_MC_MOTOR | TIM_USE_FW_SERVO, 0, 1 ), // S3
33+
DEF_TIM(TIM1, CH2, PA9, TIM_USE_MC_MOTOR | TIM_USE_FW_SERVO, 0, 1 ), // S4
34+
35+
DEF_TIM(TIM3, CH3, PB0, TIM_USE_MC_MOTOR | TIM_USE_FW_SERVO, 0, 0 ), // S5
36+
DEF_TIM(TIM3, CH4, PB1, TIM_USE_MC_MOTOR | TIM_USE_FW_SERVO, 0, 0 ), // S6
37+
DEF_TIM(TIM1, CH3, PA10, TIM_USE_MC_MOTOR | TIM_USE_FW_SERVO, 0, 0 ), // S7
38+
DEF_TIM(TIM3, CH1, PB4, TIM_USE_MC_MOTOR | TIM_USE_FW_SERVO, 0, 0 ), // S8
39+
40+
DEF_TIM(TIM2, CH2, PB3, TIM_USE_LED, 0, 0 ), // LED_STRIP – D(1, 6, 3)
41+
};
42+
43+
const int timerHardwareCount = sizeof(timerHardware) / sizeof(timerHardware[0]);

src/main/target/MAMBAF722_X8/target.h

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

Comments
 (0)