forked from Archive/PX4-Autopilot
29 lines
406 B
Bash
29 lines
406 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
|
|
|
|
uorb start
|
|
|
|
param load
|
|
param set CBRK_SUPPLY_CHK 894281
|
|
param set SYS_RESTART_TYPE 0
|
|
|
|
dataman start
|
|
|
|
battery_simulator start
|
|
simulator start
|
|
tone_alarm start
|
|
pwm_out_sim start
|
|
|
|
ver all
|
|
|
|
mavlink start -x -u 14556 -r 2000000
|
|
mavlink boot_complete
|
|
|
|
tests mavlink
|
|
|
|
dataman status
|
|
|
|
shutdown
|