You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add new scheduler for telemetry sensors
* used new frsky sensors Not used temp sensor for roll etc... anymore
* add custome telemetry sensors for CRSF
Copy file name to clipboardExpand all lines: docs/Settings.md
+30-20Lines changed: 30 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -592,6 +592,36 @@ Control rate profile to switch to when the battery profile is selected, 0 to dis
592
592
593
593
---
594
594
595
+
### crsf_telemetry_link_rate
596
+
597
+
CRSF telemetry link rate
598
+
599
+
| Default | Min | Max |
600
+
| --- | --- | --- |
601
+
| 250 | 0 | 50000 |
602
+
603
+
---
604
+
605
+
### crsf_telemetry_link_ratio
606
+
607
+
CRSF telemetry link ratio
608
+
609
+
| Default | Min | Max |
610
+
| --- | --- | --- |
611
+
| 8 | 0 | 50000 |
612
+
613
+
---
614
+
615
+
### crsf_telemetry_mode
616
+
617
+
Use extended custom telemetry sensors for CRSF
618
+
619
+
| Default | Min | Max |
620
+
| --- | --- | --- |
621
+
| NATIVE |||
622
+
623
+
---
624
+
595
625
### cruise_power
596
626
597
627
Power draw at cruise throttle used for remaining flight time/distance estimation in 0.01W unit
@@ -1192,26 +1222,6 @@ The tilt angle of the FPV camera in degrees, used by the FPV ANGLE MIX mode
1192
1222
1193
1223
---
1194
1224
1195
-
### frsky_pitch_roll
1196
-
1197
-
S.Port telemetry: Send pitch and roll degrees*10 instead of raw accelerometer data
1198
-
1199
-
| Default | Min | Max |
1200
-
| --- | --- | --- |
1201
-
| OFF | OFF | ON |
1202
-
1203
-
---
1204
-
1205
-
### frsky_use_legacy_gps_mode_sensor_ids
1206
-
1207
-
S.Port telemetry: If `ON`, send the legacy telemetry IDs for modes (Tmp1) and GNSS (Tmp2). These are old IDs, deprecated, and will be removed in INAV 10.0. Tools and scripts using these IDs should be updated to use the new IDs of **470** for Modes and **480** for GNSS. Default: 'OFF'
1208
-
1209
-
| Default | Min | Max |
1210
-
| --- | --- | --- |
1211
-
| OFF | OFF | ON |
1212
-
1213
-
---
1214
-
1215
1225
### fw_autotune_max_rate_deflection
1216
1226
1217
1227
The target percentage of maximum mixer output used for determining the rates in `AUTO` and `LIMIT`.
Copy file name to clipboardExpand all lines: src/main/fc/settings.yaml
+21-8Lines changed: 21 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,9 @@ tables:
103
103
- name: bat_voltage_source
104
104
values: ["RAW", "SAG_COMP"]
105
105
enum: batVoltageSource_e
106
+
- name: crsf_telemetry_modes
107
+
values: [ "OFF", "NATIVE", "CUSTOM" ]
108
+
enum: crsfTelemetryMode_e
106
109
- name: smartport_fuel_unit
107
110
values: ["PERCENT", "MAH", "MWH"]
108
111
enum: smartportFuelUnit_e
@@ -3113,14 +3116,24 @@ groups:
3113
3116
description: "Determines if the telemetry protocol default signal inversion is reversed. This should be OFF in most cases unless a custom or hacked RX is used."
3114
3117
default_value: OFF
3115
3118
type: bool
3116
-
- name: frsky_pitch_roll
3117
-
description: "S.Port telemetry: Send pitch and roll degrees*10 instead of raw accelerometer data"
3118
-
default_value: OFF
3119
-
type: bool
3120
-
- name: frsky_use_legacy_gps_mode_sensor_ids
3121
-
description: "S.Port telemetry: If `ON`, send the legacy telemetry IDs for modes (Tmp1) and GNSS (Tmp2). These are old IDs, deprecated, and will be removed in INAV 10.0. Tools and scripts using these IDs should be updated to use the new IDs of **470** for Modes and **480** for GNSS. Default: 'OFF'"
3122
-
default_value: OFF
3123
-
type: bool
3119
+
- name: crsf_telemetry_mode
3120
+
description: "Use extended custom telemetry sensors for CRSF"
3121
+
default_value: NATIVE
3122
+
condition: USE_TELEMETRY_LTM
3123
+
table: crsf_telemetry_modes
3124
+
type: uint8_t
3125
+
- name: crsf_telemetry_link_rate
3126
+
description: "CRSF telemetry link rate"
3127
+
default_value: 250
3128
+
type: uint16_t
3129
+
min: 0
3130
+
max: 50000
3131
+
- name: crsf_telemetry_link_ratio
3132
+
description: "CRSF telemetry link ratio"
3133
+
default_value: 8
3134
+
type: uint16_t
3135
+
min: 0
3136
+
max: 50000
3124
3137
- name: report_cell_voltage
3125
3138
description: "S.Port and IBUS telemetry: Send the average cell voltage if set to ON"
0 commit comments