This commit is contained in:
rusefillc 2022-01-18 12:31:12 -05:00
parent 5a14b35799
commit c29a0b54a7
2 changed files with 3 additions and 1 deletions

View File

@ -215,6 +215,8 @@ static const void * getStructAddr(live_data_e structId) {
return static_cast<idle_state_s*>(&engine->module<IdleController>().unmock());
case LDS_tps_accel_state:
return static_cast<tps_accel_state_s*>(&engine->tpsAccelEnrichment);
case LDS_high_pressure_fuel_pump:
return static_cast<high_pressure_fuel_pump_s*>(&engine->module<HpfpController>().unmock());
case LDS_main_relay:
return static_cast<main_relay_s*>(&engine->module<MainRelayController>().unmock());
#if EFI_BOOST_CONTROL

View File

@ -79,7 +79,7 @@ public class CodeWalkthrough {
allTerminals.add(node);
String text = node.getSymbol().getText();
valueSource.getValue(text);
//valueSource.getValue(text);
if ("else".equalsIgnoreCase(text)) {
if (log.debugEnabled())