2017-03-24 10:41:36 -07:00
|
|
|
/**
|
|
|
|
* @file engine_sniffer.h
|
2019-05-02 14:52:48 -07:00
|
|
|
* @brief rusEfi console wave sniffer
|
2017-03-24 10:41:36 -07:00
|
|
|
*
|
|
|
|
* @date Jun 23, 2013
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2017-03-24 10:41:36 -07:00
|
|
|
*/
|
|
|
|
|
2020-04-01 16:00:56 -07:00
|
|
|
#pragma once
|
2017-03-24 10:41:36 -07:00
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
|
2019-04-12 19:10:57 -07:00
|
|
|
#if EFI_ENGINE_SNIFFER
|
2017-03-24 10:41:36 -07:00
|
|
|
#include "datalogging.h"
|
|
|
|
|
|
|
|
/**
|
2019-05-02 14:52:48 -07:00
|
|
|
* @brief rusEfi console sniffer data buffer
|
2017-03-24 10:41:36 -07:00
|
|
|
*/
|
|
|
|
class WaveChart {
|
|
|
|
public:
|
|
|
|
WaveChart();
|
|
|
|
void init();
|
|
|
|
void addEvent3(const char *name, const char *msg);
|
|
|
|
void reset();
|
2019-05-02 15:42:59 -07:00
|
|
|
void startDataCollection();
|
2017-03-24 10:41:36 -07:00
|
|
|
void publishIfFull();
|
|
|
|
void publish();
|
2019-06-08 06:51:36 -07:00
|
|
|
bool isFull() const;
|
|
|
|
bool isStartedTooLongAgo() const;
|
2020-05-25 20:38:15 -07:00
|
|
|
// looks like this is only used by functional tests on real hardware
|
2019-12-21 20:27:54 -08:00
|
|
|
efitick_t pauseEngineSnifferUntilNt = 0;
|
|
|
|
|
2017-03-24 10:41:36 -07:00
|
|
|
private:
|
|
|
|
Logging logging;
|
2019-09-22 22:55:23 -07:00
|
|
|
char timeBuffer[_MAX_FILLER + 2];
|
2019-05-02 15:42:59 -07:00
|
|
|
uint32_t counter = 0;
|
|
|
|
/**
|
|
|
|
* We want to avoid visual jitter thus we want the left edge to be aligned
|
|
|
|
* https://github.com/rusefi/rusefi/issues/780
|
|
|
|
*/
|
|
|
|
bool collectingData = false;
|
2019-12-21 18:11:09 -08:00
|
|
|
efitick_t startTimeNt = 0;
|
2019-05-02 15:42:59 -07:00
|
|
|
volatile int isInitialized = false;
|
2017-03-24 10:41:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
void initWaveChart(WaveChart *chart);
|
|
|
|
void setChartSize(int newSize);
|
|
|
|
|
|
|
|
#endif /* EFI_ENGINE_SNIFFER */
|
|
|
|
|