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

Added RSSI offset to complement RSSI scaling.

This commit is contained in:
mikeller 2018-06-03 17:55:59 +12:00
parent c1e88ae7f4
commit a9c1f02afb
4 changed files with 5 additions and 1 deletions

View file

@ -49,6 +49,7 @@ typedef struct rxConfig_s {
uint16_t rx_max_usec;
uint8_t max_aux_channel;
uint8_t rssi_src_frame_errors; // true to use frame drop flags in the rx protocol
int8_t rssi_offset; // offset applied to the RSSI value before it is returned
} rxConfig_t;
PG_DECLARE(rxConfig_t, rxConfig);