36#ifndef IMT_BASE_DFF_RUNTIME_RUNTIMESTATISTICSCPU_H
37#define IMT_BASE_DFF_RUNTIME_RUNTIMESTATISTICSCPU_H
68 m_cpuLoadAverage = average;
69 updateMaxCpuLoad(average);
77 return m_cpuLoadAverage;
102 void updateMaxCpuLoad(
int16_t const currentLoad) {
103 if (currentLoad > m_cpuLoadMax) {
104 m_cpuLoadMax = currentLoad;
Holds the data for the cpu usage statistics.
void updateAverageCpuLoad(int16_t const average)
Update the average value.
int16_t getMaxCpuLoad() const
Returns the maximum cpu load.
int16_t getAverageCpuLoad() const
Returns the average cpu load.
void reset()
Resets the cpu statistics.
constexpr RuntimeStatisticsCpu()=default
Constructor.
static constexpr int16_t CPU_LOAD_INVALID
Constant which represents an invalid cpu load.
This is a application specific file which is used to configure Imt.Base.Core.Math.