mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-13 12:27:35 +08:00
21 lines
265 B
Bash
21 lines
265 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
|
|
param set SYS_RESTART_TYPE 0
|
|
|
|
dataman start
|
|
|
|
tone_alarm start
|
|
|
|
ver all
|
|
|
|
sleep 1
|
|
|
|
tests all
|
|
|
|
shutdown
|