1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Simplified configuration of fast SBus.

This commit is contained in:
mikeller 2019-08-13 22:17:33 +12:00
parent 52173c7981
commit c31c8f9fbb
6 changed files with 15 additions and 17 deletions

View file

@ -62,8 +62,9 @@ typedef struct rxConfig_s {
uint8_t rc_smoothing_auto_factor; // Used to adjust the "smoothness" determined by the auto cutoff calculations
uint8_t rssi_src_frame_lpf_period; // Period of the cutoff frequency for the source frame RSSI filter (in 0.1 s)
uint8_t srxl2_unit_id;
uint8_t srxl2_baud_fast;
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
} rxConfig_t;
PG_DECLARE(rxConfig_t, rxConfig);