1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

Added option to display RX SNR dB for CRSF instead of RSSI dBm.

This commit is contained in:
mikeller 2020-03-07 17:29:21 +13:00
parent c002d04356
commit d0cf12a52b
11 changed files with 51 additions and 30 deletions

View file

@ -65,6 +65,7 @@ typedef struct rxConfig_s {
uint8_t srxl2_unit_id; // Spektrum SRXL2 RX unit id
uint8_t srxl2_baud_fast; // Select Spektrum SRXL2 fast baud rate
uint8_t sbus_baud_fast; // Select SBus fast baud rate
uint8_t crsf_use_rx_snr; // Use RX SNR (in dB) instead of RSSI dBm for CRSF
} rxConfig_t;
PG_DECLARE(rxConfig_t, rxConfig);