1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-12 19:10:27 +03:00

fix telemetry name

This commit is contained in:
Julio Cesar 2023-12-14 22:55:09 -03:00
parent 5d4cb57b13
commit 672aa01f60
5 changed files with 5 additions and 5 deletions

View file

@ -79,7 +79,7 @@ For this you need a FT232 module. With FT-Prog (https://ftdichip.com/utilities/)
For SBUS, the command line arguments of the python script are: For SBUS, the command line arguments of the python script are:
```python tcp_serial_redirect.py --parity E --stopbits 2 -c 127.0.0.1:[INAV-UART-PORT] COMXX 100000``` ```python tcp_serial_redirect.py --parity E --stopbits 2 -c 127.0.0.1:[INAV-UART-PORT] COMXX 100000```
### Telemtry ### Telemetry
LTM and MAVLink telemetry are supported, either as a discrete function or shared with MSP. LTM and MAVLink telemetry are supported, either as a discrete function or shared with MSP.

View file

@ -4828,7 +4828,7 @@ Character to use for OSD switch incicator 3.
| Default | Min | Max | | Default | Min | Max |
| --- | --- | --- | | --- | --- | --- |
| LIGHT | | 5 | | LIGT | | 5 |
--- ---

View file

@ -48,7 +48,7 @@ typedef enum FIRMWARE_VERSION_TYPE
} FIRMWARE_VERSION_TYPE; } FIRMWARE_VERSION_TYPE;
#endif #endif
/** @brief Flags to report failure cases over the high latency telemtry. */ /** @brief Flags to report failure cases over the high latency telemetry. */
#ifndef HAVE_ENUM_HL_FAILURE_FLAG #ifndef HAVE_ENUM_HL_FAILURE_FLAG
#define HAVE_ENUM_HL_FAILURE_FLAG #define HAVE_ENUM_HL_FAILURE_FLAG
typedef enum HL_FAILURE_FLAG typedef enum HL_FAILURE_FLAG

View file

@ -3613,7 +3613,7 @@ groups:
field: osd_switch_indicator3_name field: osd_switch_indicator3_name
type: string type: string
max: 5 max: 5
default_value: "LIGHT" default_value: "LIGT"
- name: osd_switch_indicator_zero_channel - name: osd_switch_indicator_zero_channel
description: "RC Channel to use for OSD switch indicator 0." description: "RC Channel to use for OSD switch indicator 0."

View file

@ -3685,7 +3685,7 @@ void osdDrawNextElement(void)
elementIndex = osdIncElementIndex(elementIndex); elementIndex = osdIncElementIndex(elementIndex);
} while (!osdDrawSingleElement(elementIndex) && index != elementIndex); } while (!osdDrawSingleElement(elementIndex) && index != elementIndex);
// Draw artificial horizon + tracking telemtry last // Draw artificial horizon + tracking telemetry last
osdDrawSingleElement(OSD_ARTIFICIAL_HORIZON); osdDrawSingleElement(OSD_ARTIFICIAL_HORIZON);
if (osdConfig()->telemetry>0){ if (osdConfig()->telemetry>0){
osdDisplayTelemetry(); osdDisplayTelemetry();