auto-sync
This commit is contained in:
parent
7c9847ffa5
commit
af311e66bc
|
@ -41,7 +41,8 @@
|
|||
static histogram_s waveChartHisto;
|
||||
#endif
|
||||
|
||||
EXTERN_ENGINE;
|
||||
EXTERN_ENGINE
|
||||
;
|
||||
extern uint32_t maxLockTime;
|
||||
|
||||
/**
|
||||
|
@ -64,14 +65,19 @@ static Logging debugLogging;
|
|||
|
||||
static LoggingWithStorage logger("wave info");
|
||||
|
||||
/**
|
||||
* We want to skip some engine cycles to skip what was scheduled before parameters were changed
|
||||
*/
|
||||
uint32_t skipUntilEngineCycle = 0;
|
||||
|
||||
#if ! EFI_UNIT_TEST
|
||||
extern WaveChart waveChart;
|
||||
static void resetWaveChartNow(void) {
|
||||
skipUntilEngineCycle = engine->rpmCalculator.getRevolutionCounter() + 3;
|
||||
waveChart.resetWaveChart();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
void WaveChart::resetWaveChart() {
|
||||
#if DEBUG_WAVE
|
||||
scheduleSimpleMsg(&debugLogging, "reset while at ", counter);
|
||||
|
@ -153,6 +159,8 @@ static char timeBuffer[10];
|
|||
* @brief Register an event for digital sniffer
|
||||
*/
|
||||
void WaveChart::addWaveChartEvent3(const char *name, const char * msg) {
|
||||
if (engine->rpmCalculator.getRevolutionCounter() < skipUntilEngineCycle)
|
||||
return;
|
||||
efiAssertVoid(name!=NULL, "WC: NULL name");
|
||||
if (!engineConfiguration->isDigitalChartEnabled) {
|
||||
return;
|
||||
|
@ -195,7 +203,6 @@ void WaveChart::addWaveChartEvent3(const char *name, const char * msg) {
|
|||
uint32_t diffNt = nowNt - startTimeNt;
|
||||
uint32_t time100 = NT2US(diffNt / 10);
|
||||
|
||||
|
||||
if (remainingSize(&logging) > 35) {
|
||||
/**
|
||||
* printf is a heavy method, append is used here as a performance optimization
|
||||
|
|
|
@ -276,5 +276,5 @@ int getRusEfiVersion(void) {
|
|||
return 1; // this is here to make the compiler happy about the unused array
|
||||
if (UNUSED_CCM_SIZE[0] == 0)
|
||||
return 1; // this is here to make the compiler happy about the unused array
|
||||
return 20150321;
|
||||
return 20150322;
|
||||
}
|
||||
|
|
|
@ -111,6 +111,7 @@ public class TestingUtils {
|
|||
static String getNextWaveChart() {
|
||||
// we need to skip TWO because spark could have been scheduled a while ago and happen now
|
||||
// todo: improve this logic, compare times
|
||||
IoUtil.sendCommand("reset_wave_chart");
|
||||
getWaveChart();
|
||||
getWaveChart();
|
||||
// we want to wait for the 2nd chart to see same same RPM across the whole chart
|
||||
|
|
|
@ -167,6 +167,7 @@ public class WaveReport implements TimeAxisTranslator {
|
|||
return "UpDown{" +
|
||||
"upTime=" + upTime +
|
||||
", downTime=" + downTime +
|
||||
", d=" + getDuration() +
|
||||
'}';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue