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
294 B
10 lines
294 B
#!/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
|
|
|