mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
Using mixers on the IO side had a remote benefit of being able to override all control surfaces with a radio remote on a fixed wing. This ended up not being used that much and since the original design 10 years ago (2011) we have been able to convince ourselves that the overall system stability is at a level where this marginal benefit, which is not present on multicopters, is not worth the hazzle. Co-authored-by: Beat Küng <beat-kueng@gmx.net> Co-authored-by: Daniel Agar <daniel@agar.ca>
24 lines
352 B
Bash
24 lines
352 B
Bash
#!/bin/sh
|
|
# PX4 commands need the 'px4-' prefix in bash.
|
|
# (px4-alias.sh is expected to be in the PATH)
|
|
. px4-alias.sh
|
|
|
|
param load
|
|
param set CBRK_SUPPLY_CHK 894281
|
|
|
|
dataman start
|
|
|
|
battery_simulator start
|
|
simulator start
|
|
tone_alarm start
|
|
pwm_out_sim start
|
|
|
|
ver all
|
|
|
|
mavlink start -x -u 14556 -r 2000000 -p
|
|
mavlink boot_complete
|
|
|
|
mavlink_tests
|
|
|
|
shutdown
|