From e0ef6420b00d352cb1e05d0bf84811094dc03c2c Mon Sep 17 00:00:00 2001 From: rusefi Date: Thu, 25 May 2017 08:57:03 -0400 Subject: [PATCH] isVerboseETB --- firmware/controllers/electronic_throttle.cpp | 4 ++++ firmware/rusefi.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/electronic_throttle.cpp b/firmware/controllers/electronic_throttle.cpp index add037bccd..6cf4be66f2 100644 --- a/firmware/controllers/electronic_throttle.cpp +++ b/firmware/controllers/electronic_throttle.cpp @@ -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; diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index 75598baa91..c6dcd25667 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -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; }