diff --git a/firmware/config/engines/bmw_e34.cpp b/firmware/config/engines/bmw_e34.cpp index ef1478a035..6ecb8357ac 100644 --- a/firmware/config/engines/bmw_e34.cpp +++ b/firmware/config/engines/bmw_e34.cpp @@ -24,10 +24,6 @@ void setBmwE43(engine_configuration_s *engineConfiguration) { engineConfiguration->injectionMode = IM_SIMULTANEOUS; engineConfiguration->ignitionMode = IM_WASTED_SPARK; - // emulating this 60-0 takes some resources, let's keep it slow by default - // rpm 200 - boardConfiguration->triggerSimulatorFrequency = 200; - setConstantDwell(engineConfiguration, 3); // a bit shorter dwell engineConfiguration->useConstantDwellDuringCranking = true; engineConfiguration->ignitionDwellForCrankingMs = 5; @@ -51,5 +47,9 @@ void setBmwE43(engine_configuration_s *engineConfiguration) { bc->ignitionPins[4] = GPIOC_9; // #5 bc->ignitionPins[5] = GPIO_UNASSIGNED; // #6 + // emulating this 60-0 takes some resources, let's keep it slow by default + // rpm 200 + bc->triggerSimulatorFrequency = 200; + engineConfiguration->map.sensor.sensorType = MT_MPX4250; } diff --git a/java_console/ui/src/com/rusefi/ui/RpmPanel.java b/java_console/ui/src/com/rusefi/ui/RpmPanel.java index 22fd1b76dd..98f9a4fcaa 100644 --- a/java_console/ui/src/com/rusefi/ui/RpmPanel.java +++ b/java_console/ui/src/com/rusefi/ui/RpmPanel.java @@ -36,7 +36,7 @@ public class RpmPanel { gauges.add(SensorGauge.createGauge(Sensor.FUEL)); gauges.add(SensorGauge.createGauge(Sensor.TIMING)); - gauges.add(SensorGauge.createGauge(Sensor.VREF)); + gauges.add(SensorGauge.createGauge(Sensor.VBATT)); gauges.add(SensorGauge.createGauge(Sensor.MAF)); gauges.add(SensorGauge.createGauge(Sensor.TPS));