mirror of https://github.com/ArduPilot/ardupilot
AP_RCTelemetry: throttle CRSF request RX device info messages
This commit is contained in:
parent
c4e2c4f7cb
commit
61aec54ea7
|
@ -468,7 +468,11 @@ void AP_CRSF_Telem::process_packet(uint8_t idx)
|
||||||
GCS_SEND_TEXT(MAV_SEVERITY_DEBUG,"%s: RX device ping failed", get_protocol_string());
|
GCS_SEND_TEXT(MAV_SEVERITY_DEBUG,"%s: RX device ping failed", get_protocol_string());
|
||||||
} else {
|
} else {
|
||||||
calc_device_ping(AP_RCProtocol_CRSF::CRSF_ADDRESS_CRSF_RECEIVER);
|
calc_device_ping(AP_RCProtocol_CRSF::CRSF_ADDRESS_CRSF_RECEIVER);
|
||||||
GCS_SEND_TEXT(MAV_SEVERITY_DEBUG,"%s: requesting RX device info", get_protocol_string());
|
uint32_t tnow_ms = AP_HAL::millis();
|
||||||
|
if ((tnow_ms - _crsf_version.last_request_info_ms) > 5000) {
|
||||||
|
_crsf_version.last_request_info_ms = tnow_ms;
|
||||||
|
GCS_SEND_TEXT(MAV_SEVERITY_DEBUG,"%s: requesting RX device info", get_protocol_string());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DEVICE_PING:
|
case DEVICE_PING:
|
||||||
|
|
|
@ -335,6 +335,7 @@ private:
|
||||||
bool use_rf_mode;
|
bool use_rf_mode;
|
||||||
AP_RCProtocol_CRSF::ProtocolType protocol;
|
AP_RCProtocol_CRSF::ProtocolType protocol;
|
||||||
bool pending = true;
|
bool pending = true;
|
||||||
|
uint32_t last_request_info_ms;
|
||||||
} _crsf_version;
|
} _crsf_version;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
|
|
Loading…
Reference in New Issue