PID auto tune

This commit is contained in:
rusefi 2017-09-14 07:58:58 -04:00
parent f8e37c9c92
commit 4e59049bd1
3 changed files with 30 additions and 0 deletions

View File

@ -11,5 +11,6 @@ TEST_SRC_CPP = test_util.cpp \
test_speed_density.cpp \
test_signal_executor.cpp \
test_sensors.cpp \
test_pid_auto.cpp \
test_accel_enrichment.cpp

View File

@ -0,0 +1,17 @@
/*
* test_pid_auto.cpp
*
* Created on: Sep 14, 2017
* @author Andrey Belomutskiy, (c) 2012-2017
*/
#include "main.h"
efitimems_t mockTimeMs = 0;
efitimems_t currentTimeMillis(void) {
return mockTimeMs;
}

View File

@ -0,0 +1,12 @@
/*
* test_pid_auto.h
*
* Created on: Sep 14, 2017
* @author Andrey Belomutskiy, (c) 2012-2017
*/
#ifndef TEST_PID_AUTO_H_
#define TEST_PID_AUTO_H_
#endif /* TEST_PID_AUTO_H_ */