Skip to content

Commit

Permalink
support INAV8 alternate frskyIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
stronnag committed Mar 29, 2024
1 parent bdcfde5 commit e017510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SCRIPTS/TELEMETRY/iNav/data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ local data = {
txBattMax = general.battMax,
lang = string.lower(general.language),
voice = general.voice,
mode_id = getTelemetryId("Tmp1"),
mode_id = getTelemetryId("Tmp1") > -1 and getTelemetryId("Tmp1") or getTelemetryId("0470"),
rxBatt_id = getTelemetryId("RxBt") > -1 and getTelemetryId("RxBt") or getTelemetryId("BtRx"),
sat_id = getTelemetryId("Tmp2"),
sat_id = getTelemetryId("Tmp2") > -1 and getTelemetryId("Tmp2") or getTelemetryId("0480"),
gpsAlt_id = getTelemetryId("GAlt"),
gpsLatLon_id = getTelemetryId("GPS"),
hdg_id = getTelemetryId("Hdg"),
Expand Down

0 comments on commit e017510

Please sign in to comment.