mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-01 01:30:35 +08:00
rate limit most parameter_update subscriptions
- parameter updates can be quite expensive because they trigger nearly all modules to reload all of their parameters immediately - limit modules from updating faster than once per second
This commit is contained in:
@@ -41,7 +41,6 @@
|
||||
#include <systemlib/mavlink_log.h>
|
||||
|
||||
using namespace temperature_compensation;
|
||||
using namespace time_literals;
|
||||
|
||||
TemperatureCompensationModule::TemperatureCompensationModule() :
|
||||
ModuleParams(nullptr),
|
||||
@@ -233,10 +232,10 @@ void TemperatureCompensationModule::Run()
|
||||
}
|
||||
|
||||
// Check if any parameter has changed
|
||||
if (_params_sub.updated()) {
|
||||
if (_parameter_update_sub.updated()) {
|
||||
// Read from param to clear updated flag
|
||||
parameter_update_s update;
|
||||
_params_sub.copy(&update);
|
||||
_parameter_update_sub.copy(&update);
|
||||
|
||||
parameters_update();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user