ETB JNI test progress

This commit is contained in:
Andrey 2022-11-29 02:10:55 -05:00
parent 432258d297
commit 181b5b2ed8
1 changed files with 6 additions and 4 deletions

View File

@ -57,10 +57,11 @@ private:
bool configure(const TpsConfig& cfg) { bool configure(const TpsConfig& cfg) {
// Only configure if we have a channel // Only configure if we have a channel
if (!isAdcChannelValid(cfg.channel)) { if (!isAdcChannelValid(cfg.channel)) {
printf("Configured NO\n"); #if EFI_UNIT_TEST
printf("Configured NO hardware %s\n", name());
#endif
return false; return false;
} }
printf("Configured YES\n");
float scaledClosed = cfg.closed / m_func.getDivideInput(); float scaledClosed = cfg.closed / m_func.getDivideInput();
float scaledOpen = cfg.open / m_func.getDivideInput(); float scaledOpen = cfg.open / m_func.getDivideInput();
@ -72,7 +73,6 @@ private:
firmwareError(OBD_TPS_Configuration, "\"%s\" problem: open %.2f/closed %.2f cal values are too close together. Check your calibration and wiring!", name(), firmwareError(OBD_TPS_Configuration, "\"%s\" problem: open %.2f/closed %.2f cal values are too close together. Check your calibration and wiring!", name(),
cfg.open, cfg.open,
cfg.closed); cfg.closed);
printf("Configured split\n");
return false; return false;
} }
@ -82,7 +82,9 @@ private:
cfg.min, cfg.max cfg.min, cfg.max
); );
printf("Configured true\n"); #if EFI_UNIT_TEST
printf("Configured YES %s\n", name());
#endif
return true; return true;
} }