mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-28 19:14:07 +08:00
14 lines
179 B
Bash
14 lines
179 B
Bash
#!/bin/sh
|
|
#
|
|
# Flight startup script for PX4FMU standalone configuration.
|
|
#
|
|
|
|
echo "[i] doing standalone PX4FMU startup..."
|
|
|
|
#
|
|
# Start the ORB
|
|
#
|
|
uorb start
|
|
|
|
echo "[i] startup done"
|