mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
32 lines
435 B
Bash
32 lines
435 B
Bash
#!/bin/sh
|
|
# PX4 commands need the 'px4-' prefix in bash.
|
|
# (px4-alias.sh is expected to be in the PATH)
|
|
source px4-alias.sh
|
|
|
|
uorb start
|
|
|
|
param load
|
|
param set SYS_RESTART_TYPE 0
|
|
|
|
dataman start
|
|
|
|
simulator start -t
|
|
tone_alarm start
|
|
gyrosim start
|
|
accelsim start
|
|
barosim start
|
|
gpssim start
|
|
measairspeedsim start
|
|
pwm_out_sim start
|
|
|
|
ver all
|
|
|
|
mavlink start -x -u 14556 -r 2000000
|
|
mavlink boot_complete
|
|
|
|
tests mavlink
|
|
|
|
dataman status
|
|
|
|
shutdown
|