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
@@ -582,6 +582,36 @@ Blackbox logging rate numerator. Use num/denom settings to decide if a frame sho
582
582
583
583
---
584
584
585
+
### crsf_telemetry_link_rate
586
+
587
+
CRSF telemetry link rate
588
+
589
+
| Default | Min | Max |
590
+
| --- | --- | --- |
591
+
| 250 | 0 | 50000 |
592
+
593
+
---
594
+
595
+
### crsf_telemetry_link_ratio
596
+
597
+
CRSF telemetry link ratio
598
+
599
+
| Default | Min | Max |
600
+
| --- | --- | --- |
601
+
| 8 | 0 | 50000 |
602
+
603
+
---
604
+
605
+
### crsf_telemetry_mode
606
+
607
+
Use extended custom telemetry sensors for CRSF
608
+
609
+
| Default | Min | Max |
610
+
| --- | --- | --- |
611
+
| NATIVE |||
612
+
613
+
---
614
+
585
615
### cruise_power
586
616
587
617
Power draw at cruise throttle used for remaining flight time/distance estimation in 0.01W unit
@@ -1182,26 +1212,6 @@ The tilt angle of the FPV camera in degrees, used by the FPV ANGLE MIX mode
1182
1212
1183
1213
---
1184
1214
1185
-
### frsky_pitch_roll
1186
-
1187
-
S.Port telemetry: Send pitch and roll degrees*10 instead of raw accelerometer data
1188
-
1189
-
| Default | Min | Max |
1190
-
| --- | --- | --- |
1191
-
| OFF | OFF | ON |
1192
-
1193
-
---
1194
-
1195
-
### frsky_use_legacy_gps_mode_sensor_ids
1196
-
1197
-
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'
1198
-
1199
-
| Default | Min | Max |
1200
-
| --- | --- | --- |
1201
-
| OFF | OFF | ON |
1202
-
1203
-
---
1204
-
1205
1215
### fw_autotune_max_rate_deflection
1206
1216
1207
1217
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