Enhance SIH on Flight Controller Hardware documentation

Updated the section on running SIH on flight controller hardware, including setup instructions and supported airframes.
This commit is contained in:
romain-chiap 2026-04-10 09:04:03 +02:00 committed by GitHub
parent 9eddd0cdbc
commit 6d5238e606
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -206,8 +206,25 @@ See [Port Reference](#port-reference) for the complete list of ports.
## SIH on Flight Controller Hardware {#sih-on-flight-controller-hardware}
SIH can also run on flight controller hardware with `SYS_HITL=2`, replacing real sensors with simulated data while running on the actual autopilot.
See [SIH on Flight Controller Hardware](hardware.md) for setup instructions.
SIH can also run on flight controller hardware by replacing real sensors with simulated data while running on the actual autopilot. Setting it is a simple as selecting the appropriate SIH airframe. The easiest method to run the SIH Quadrotor X is to set the parameter `SYS_AUTOSTART=1100` then reboot the vehicle.
::: tip
To ensure that the vehicles behaves well, it is recommended to reset all the parameters to firmware's default before modifying `SYS_AUTOSTART`.
:::
The following airframes are supported
| SIH Airframe | SYS_AUTOSTART | Status |
| --------------- | ------------- | ----------------- |
| Quadrotor X | 1100 | Stable |
| Airplane | 1101 | Experimental |
| Tailsitter Duo | 1102 | Experimental |
| Standard VTOL | 1103 | Experimental |
| Ackermann Rover | 1104 | Experimental |
| Hexacopter X | 1105 | Experimental |
See [SIH on Flight Controller Hardware](hardware.md) for more details and compilation instructions.
## Adding New Airframes