isVerboseETB

This commit is contained in:
rusefi 2017-05-25 08:57:03 -04:00
parent 5ba67f98db
commit e0ef6420b0
2 changed files with 5 additions and 1 deletions

View File

@ -97,6 +97,10 @@ static msg_t etbThread(void *arg) {
if (engineConfiguration->debugMode == DBG_ELECTRONIC_THROTTLE) {
pid.postState(&tsOutputChannels);
}
if (engineConfiguration->isVerboseETB) {
pid.showPidStatus(&logger, "ETB", boardConfiguration->etbDT);
}
// if (tps != prevTps) {
// prevTps = tps;

View File

@ -251,5 +251,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array
return 20170521;
return 20170525;
}