docs
This commit is contained in:
parent
28823f1d84
commit
f53b64a558
|
@ -239,6 +239,7 @@ void initWaveChart(WaveChart *chart) {
|
||||||
printStatus();
|
printStatus();
|
||||||
addConsoleActionI("chartsize", setChartSize);
|
addConsoleActionI("chartsize", setChartSize);
|
||||||
addConsoleActionI("chart", setChartActive);
|
addConsoleActionI("chart", setChartActive);
|
||||||
|
// this is used by HW CI
|
||||||
addConsoleAction(CMD_RESET_ENGINE_SNIFFER, resetNow);
|
addConsoleAction(CMD_RESET_ENGINE_SNIFFER, resetNow);
|
||||||
#endif // EFI_UNIT_TEST
|
#endif // EFI_UNIT_TEST
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,7 @@ public:
|
||||||
private:
|
private:
|
||||||
Logging logging;
|
Logging logging;
|
||||||
char timeBuffer[_MAX_FILLER + 2];
|
char timeBuffer[_MAX_FILLER + 2];
|
||||||
|
// current number of events in buffer, see getSize()
|
||||||
uint32_t counter = 0;
|
uint32_t counter = 0;
|
||||||
/**
|
/**
|
||||||
* We want to avoid visual jitter thus we want the left edge to be aligned
|
* We want to avoid visual jitter thus we want the left edge to be aligned
|
||||||
|
|
Loading…
Reference in New Issue