You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
0 B
11 lines
0 B
6 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# PX4 FMUv4 specific board extras init
|
||
|
#------------------------------------------------------------------------------
|
||
|
|
||
|
# Run FrSky Telemetry on Pixracer on the FrSky port if not enabled already
|
||
|
if param compare TEL_FRSKY_CONFIG 0
|
||
|
then
|
||
|
frsky_telemetry start -d /dev/ttyS6 -t 15
|
||
|
fi
|