mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
580af4a69a
See discussion here: https://github.com/ArduPilot/ardupilot/issues/7331 we were getting some uninitialised variables. While it only showed up in AP_SbusOut, it means we can't be sure it won't happen on other objects, so safest to remove the approach Thanks to assistance from Lucas, Peter and Francisco
36 lines
825 B
C++
36 lines
825 B
C++
#include <stdint.h>
|
|
|
|
namespace AP {
|
|
|
|
class PerfInfo {
|
|
public:
|
|
PerfInfo() {}
|
|
|
|
/* Do not allow copies */
|
|
PerfInfo(const PerfInfo &other) = delete;
|
|
PerfInfo &operator=(const PerfInfo&) = delete;
|
|
|
|
void reset();
|
|
void ignore_this_loop();
|
|
void check_loop_time(uint32_t time_in_micros);
|
|
uint16_t get_num_loops() const;
|
|
uint32_t get_max_time() const;
|
|
uint32_t get_min_time() const;
|
|
uint16_t get_num_long_running() const;
|
|
uint32_t get_num_dropped() const;
|
|
uint32_t get_avg_time() const;
|
|
uint32_t get_stddev_time() const;
|
|
|
|
private:
|
|
uint16_t loop_count;
|
|
uint32_t max_time; // in microseconds
|
|
uint32_t min_time; // in microseconds
|
|
uint64_t sigma_time;
|
|
uint64_t sigmasquared_time;
|
|
uint16_t long_running;
|
|
uint32_t log_dropped;
|
|
bool ignore_loop;
|
|
};
|
|
|
|
};
|