mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 08:38:36 -04:00
18 lines
276 B
Bash
18 lines
276 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
BOARD=NucleoH743
|
||
|
BOARD=MatekH743
|
||
|
#BOARD=F35Lightning
|
||
|
|
||
|
THISDIR=$(dirname $0)
|
||
|
|
||
|
./waf configure \
|
||
|
--board=$BOARD \
|
||
|
--extra-hwdef="$THISDIR/extra-hwdef-sitl-on-hw.dat" \
|
||
|
--default-param="$THISDIR/default.param"
|
||
|
|
||
|
./waf copter --upload
|