remove downlink_power in link stats TX frame

This commit is contained in:
tbs-fpv 2021-04-12 11:31:54 +08:00
parent 8872830410
commit 62c8e92b38
1 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ typedef struct crsfPayloadRcChannelsPacked_s crsfPayloadRcChannelsPacked_t;
* uint8_t Uplink RSSI ( % )
* uint8_t Uplink Package success rate / Link quality ( % )
* int8_t Uplink SNR ( db )
* uint8_t Downlink RF Power ( db )
* uint8_t Downlink RF Power ( db, not used in betaflight)
* uint8_t Uplink FPS ( FPS / 10 )
*/
@ -196,7 +196,7 @@ typedef struct crsfPayloadLinkstatisticsTx_s {
uint8_t uplink_RSSI_percentage;
uint8_t uplink_Link_quality;
int8_t uplink_SNR;
uint8_t downlink_power;
/* uint8_t downlink_power; */ // not used
uint8_t uplink_FPS;
} crsfLinkStatisticsTx_t;
#endif