mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
14 lines
208 B
Bash
Executable File
14 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /root
|
|
(
|
|
date
|
|
init 3
|
|
killall -q udhcpd
|
|
(cd Linux_HAL_Essentials && ./startup.sh load)
|
|
while :; do
|
|
./ArduPlane.elf -A /dev/ttyO0 -B /dev/ttyO5
|
|
done
|
|
) >> plane.log 2>&1
|
|
|