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

Make negotiated baud configurable for CRSF

This commit is contained in:
Hans Christian Olaussen 2022-03-15 14:39:55 +01:00
parent 70a1b59687
commit 06bf20e79a
6 changed files with 13 additions and 2 deletions

View file

@ -62,6 +62,7 @@ typedef struct rxConfig_s {
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
uint32_t msp_override_channels_mask; // Channels to override when the MSP override mode is enabled
uint8_t crsf_use_negotiated_baud; // Use negotiated baud rate for CRSF V3
} rxConfig_t;
PG_DECLARE(rxConfig_t, rxConfig);