1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Updating telemetry documentation.

This commit is contained in:
Dominic Clifton 2014-05-25 03:04:20 +01:00
parent e40c890183
commit 1df79e65fc

View file

@ -2,12 +2,34 @@
Telemetry allows you to know what is happening on your aircraft while you are flying it. Among other things you can receive battery voltages and GPS positions on your transmitter.
Two telemetry providers are currently supported, FrSky (the default) and Graupner HoTT V4.
Telemetry can be either always on, or enabled when armed. If no serial port is set to be telemetry-only then telemetry will only be enabled when armed.
Telemetry is enabled using the 'TELEMETRY` feature.
```
feature TELEMETRY
```
Three telemetry providers are currently supported, FrSky (the default), Graupner HoTT V4 and MultiWii Serial Protocol (MSP)
Use the `telemetry_provider` cli command to select one.
| Value | Meaning |
| ----- | --------------- |
| 0 | FrSky (Default) |
| 1 | HoTT |
| 2 | MSP |
Example:
```
set telemetry_provider = 1
```
There are further examples in the Configuration section of the documentation.
## FrSky telemetry
See the Configuration examples in the documentation for details on how to enable it.
FrSky telemetry is transmit only and just requires a single connection from the TX pin of a serial port to the RX pin on an FrSky telemetry receiver.
FrSky telemetry signals are inverted. To connect a cleanflight capable board to an FrSKy receiver you have some options.
@ -26,8 +48,6 @@ set frsky_inversion = 1
## HoTT telemetry
See the Configuration examples in the documentation for details on how to enable it.
HoTT telemetry can be used when the TX and RX pins of a serial port are connected using a diode and a single wire to the T port on a HoTT receiver.
Only Electric Air Modules and GPS Modules are emulated, remember to enable them on your transmitter - in the Telemetry Menu on the MX-20.
@ -49,3 +69,12 @@ The diode should be arranged to allow the data signals to flow the right way
As noticed by Skrebber the GR-12 (and probably GR-16/24, too) are based on a PIC 24FJ64GA-002, which has 5V tolerant digital pins.
Note: The softserial ports are not listed as 5V tolerant in the STM32F103xx data sheet pinouts and pin description section. Verify if you require a 5v/3.3v level shifters.
## MultiWii Serial Protocol (MSP)
MSP Telemetry simply transmitts MSP packets in sequence to any MSP device attached to the telemetry port. It rotates though a fixes sequence of command responses.
It is transmit only, it can work at any supported baud rate.
MSP telemetry is currently only output on serial ports that are set to MSP, NOT telemetry.
This will likely change in the future so that the MSP telemetry uses ports configured as telemetry just like the other providers do.