fix(mavlink): GPS jamming only warning

This commit is contained in:
ttechnick 2026-03-30 11:48:46 +02:00 committed by Nick
parent 7584f7567f
commit c2c811072e

View File

@ -635,10 +635,10 @@ void EstimatorChecks::checkGps(const Context &context, Report &reporter, const s
*/
reporter.armingCheckFailure(NavModes::None, health_component_t::gps,
events::ID("check_estimator_gps_jamming_critical"),
events::Log::Critical, "GPS jamming detected");
events::Log::Warning, "GPS jamming detected");
if (reporter.mavlink_log_pub()) {
mavlink_log_critical(reporter.mavlink_log_pub(), "GPS jamming detected\t");
mavlink_log_warning(reporter.mavlink_log_pub(), "GPS jamming detected\t");
}
}
}