rusefi-1/unit_tests/test_pid_auto.cpp

22 lines
290 B
C++
Raw Normal View History

2017-09-14 04:58:58 -07:00
/*
* test_pid_auto.cpp
*
* Created on: Sep 14, 2017
* @author Andrey Belomutskiy, (c) 2012-2017
*/
#include "main.h"
2017-09-14 18:00:28 -07:00
#include "test_pid_auto.h"
2017-09-14 04:58:58 -07:00
efitimems_t mockTimeMs = 0;
efitimems_t currentTimeMillis(void) {
return mockTimeMs;
}
2017-09-14 18:00:28 -07:00
void testPidAutoZigZag() {
mockTimeMs = 0;
2017-09-14 04:58:58 -07:00
2017-09-14 18:00:28 -07:00
}