Skip to content

Commit 3d56e5a

Browse files
committed
4.7:StellarH7V2
1 parent 88bd4db commit 3d56e5a

File tree

4 files changed

+126
-1
lines changed

4 files changed

+126
-1
lines changed

common/source/docs/common-autopilots.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ Open Hardware
7474
TauLabs Sparky2 <common-taulabs-sparky2>
7575
ZeroOneX6 <common-zeroonex6>
7676

77-
\* due to flash memory limitations, these boards do not include all ArduPilot features. See :ref:`Firmware Limitations <common-limited_firmware>` for details.
77+
\* due to flash memory limitations, these boards do not include all ArduPilot features. See :ref:
78+
Camera Switch
79+
=============
80+
GPIO 81 controls which camera input (CAM1 or CAM2) is applied to the internal OSD. A RELAY function (see :ref:`common-relay`)can be enabled to control the switching.`Firmware Limitations <common-limited_firmware>` for details.
7881

7982
Closed Hardware
8083
===============
@@ -176,6 +179,7 @@ Closed Hardware
176179
SpeedyBee F4 V3/V4 <common-speedybeef4-v3>
177180
SpeedyBee F405 Mini <common-speedybeef405-mini>
178181
SpeedyBeeF405WING/WING Mini <common-speedybeef405wing>
182+
StellarH7V2 <common-stellarh7v2>
179183
TBS Lucid H7 <common-tbs-lucidh7>
180184
ThePeach FCC-K1 <common-thepeach-k1>
181185
ThePeach FCC-R1 <common-thepeach-r1>
+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
.. _common-stellh7v2:
2+
3+
[copywiki destination="plane,copter,blimp,rover"]
4+
5+
===========
6+
StellarH7V2
7+
===========
8+
9+
An autopilot sold by `StingBee <https://stingbee.com.ua/flight_controllers/stellarh7v2>`__
10+
11+
Features
12+
========
13+
14+
* Processor
15+
* STM32H743VIH6 480 MHz, 2MB flash
16+
* Sensors
17+
* ICM-42688p Acc/Gyro with external clock feature
18+
* DPS310/BMP280 barometer
19+
* AT7456E OSD
20+
* SD Card
21+
* Power
22+
* 2S-8S Lipo input voltage with voltage monitoring
23+
* 12V, 3A BEC for powering Video Transmitter
24+
* 5V, 2A BEC for internal and peripherals
25+
* Interfaces
26+
* 10x PWM outputs DShot capable, 4 outputs BDShot capable
27+
* 7x UARTs
28+
* 1x CAN
29+
* 1x I2C
30+
* 3x ADC
31+
* SD card for logging
32+
* USB-C port
33+
* LED
34+
* Red, 3.3V power indicator
35+
* Blue and Green, FC status
36+
* Size
37+
* 41 x 41mm PCB with 30.5mm M3 mounting holes
38+
39+
Pinouts
40+
=======
41+
42+
.. image:: ../../../images/StellarH7V2-top.png
43+
:target: ../_images/StellarH7V2-top.png
44+
45+
.. image:: ../../../images/StellarH7V2-bot.png
46+
:target: ../_images/StellarH7V2-bot.png
47+
48+
UART Mapping
49+
============
50+
51+
The UARTs are marked RX and TX in the above pinouts. The RX pin is the
52+
receive pin for the UART. The TX pin is the transmit pin for UART. All UARTS except UART6 and UART8 are DMA capable. Default protocols are shown below and can be changed by the user.
53+
54+
55+
* SERIAL0 -> USB
56+
* SERIAL1 -> UART1 (MAVLink2)
57+
* SERIAL2 -> UART2 (MAVLink2)
58+
* SERIAL3 -> UART3 (User)
59+
* SERIAL4 -> UART4 (Serial RC input)
60+
* SERIAL5 -> UART6 (GPS)
61+
* SERIAL6 -> UART7 (DisplayPort)
62+
* SERIAL7 -> UART8 (ESC Telemetry, RX8 pin only)
63+
64+
CAN and I2C
65+
===========
66+
StellarH7V2 supports 1x CAN bus and 1x I2C bus
67+
68+
RC Input
69+
========
70+
The default RC input is configured on the UART4 RX4 input and can be used for all ArduPilot supported unidirectional receiver protocols.
71+
72+
* PPM is not supported.
73+
* SBUS/DSM/SRXL connects to the RX4 pin.
74+
* FPort requires connection to TX4 and :ref:`SERIAL4_OPTIONS<SERIAL4_OPTIONS>` set to "7". See :ref:`common-FPort-receivers`.
75+
* CRSF also requires a TX4 connection, in addition to RX4, and automatically provides telemetry.
76+
* SRXL2 requires a connection to TX4 and automatically provides telemetry. Set :ref:`SERIAL4_OPTIONS<SERIAL4_OPTIONS>` to “4”.
77+
78+
OSD Support
79+
===========
80+
StellarH7V2 supports using its internal OSD using OSD_TYPE 1 (MAX7456 driver). Simulatenous DisplayPort OSD operation is preconfigured on SERIAL 6 but requires OSD_TYPE2 = 5. See :ref:`common-msp-osd-overview-4.2` for more info.
81+
82+
PWM Output
83+
==========
84+
StellarH7V2 supports up to 10 PWM outputs.
85+
86+
All the channels support DShot. Channels 1-6 support bi-directional DShot. Channels 9 and 10 are marked as S5 and S6 on the board. PWM outputs are grouped and every group must use the same output protocol:
87+
88+
* 1, 2 are Group 1;
89+
* 3, 4, 5, 6 are Group 2;
90+
* 7, 8, 9, 10 are Group 3;
91+
92+
Battery Monitoring
93+
==================
94+
The board has 1 built-in voltage dividers and 2x current ADC which support external 3.3V based current sensors. The voltage input is compatible with 2~8S LiPo batteries.
95+
96+
The default battery parameters are:
97+
98+
* :ref:`BATT_MONITOR<BATT_MONITOR>` = 4
99+
* :ref:`BATT_VOLT_PIN<BATT_VOLT_PIN__AP_BattMonitor_Analog>` = 10
100+
* :ref:`BATT_CURR_PIN<BATT_CURR_PIN__AP_BattMonitor_Analog>` = 11 (CURR pin)
101+
* :ref:`BATT_VOLT_MULT<BATT_VOLT_MULT__AP_BattMonitor_Analog>` = 11
102+
* :ref:`BATT_AMP_PERVLT<BATT_AMP_PERVLT__AP_BattMonitor_Analog>` = 10
103+
* :ref:`BATT2_CURR_PIN<BATT2_CURR_PIN__AP_BattMonitor_Analog>` = 7 (ADC2 pin)
104+
105+
106+
Camera Switch
107+
=============
108+
GPIO 81 controls which camera input (CAM1 or CAM2) is applied to the internal OSD. A RELAY function (see :ref:`common-relay`)can be enabled to control the switching.
109+
110+
Compass
111+
=======
112+
StellarH7V2 does not have a built-in compass, but you can attach an external compass using I2C on the SDA and SCL pads.
113+
114+
Loading Firmware
115+
================
116+
Firmware for these boards can be found at https://firmware.ardupilot.org in sub-folders labeled StellarH7V2.
117+
118+
Initial firmware load can be done with DFU by plugging in USB with the
119+
boot button pressed. Then you should load the "xxxx_with_bl.hex" firmware, using your favorite DFU loading tool. eg STM32CubeProgrammer
120+
121+
Subsequently, you can update firmware with Mission Planner or other ArduPilot compatible GCS.

images/StellarH7V2-bot.png

240 KB
Loading

images/StellarH7V2-top.png

228 KB
Loading

0 commit comments

Comments
 (0)