Compare commits

..

5 Commits

View File

@ -4,6 +4,8 @@
#include "Producer.hpp" #include "Producer.hpp"
#include <random>
#include "SysfsRead.hpp" #include "SysfsRead.hpp"
Producer::Producer(const std::filesystem::path& sysfs_path, Producer::Producer(const std::filesystem::path& sysfs_path,
@ -27,6 +29,14 @@ std::chrono::milliseconds Producer::compute_delay(SysfsStatus status) const
{ // when error = temp too high { // when error = temp too high
return hot; return hot;
} }
if (status == SysfsStatus::Enabled)
{
static std::random_device rd;
static std::mt19937 gen(rd());
std::uniform_int_distribution<int> dist(1000,5000); //jittered around 3s with +-2s
return std::chrono::milliseconds(dist(gen));
}
else else
{ {
return standard; return standard;