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.
10 lines
284 B
10 lines
284 B
#!/bin/sh
|
|
#
|
|
# board specific 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
|
|
|