auto-sync
This commit is contained in:
parent
6e59c485b1
commit
8d62a4a8c6
|
@ -1,4 +1,4 @@
|
||||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Sep 11 22:19:47 EDT 2016
|
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon Sep 12 21:38:15 EDT 2016
|
||||||
// begin
|
// begin
|
||||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||||
|
@ -1274,6 +1274,7 @@ typedef struct {
|
||||||
bool isManualSpinningMode : 1;
|
bool isManualSpinningMode : 1;
|
||||||
/**
|
/**
|
||||||
* This is needed if batched injection and individual injector wiring
|
* This is needed if batched injection and individual injector wiring
|
||||||
|
* enable two_wire_batch_injection
|
||||||
offset 1500 bit 13 */
|
offset 1500 bit 13 */
|
||||||
bool twoWireBatchInjection : 1;
|
bool twoWireBatchInjection : 1;
|
||||||
/**
|
/**
|
||||||
|
@ -1930,4 +1931,4 @@ typedef struct {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// end
|
// end
|
||||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Sep 11 22:19:47 EDT 2016
|
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon Sep 12 21:38:15 EDT 2016
|
||||||
|
|
|
@ -598,7 +598,7 @@ custom idle_mode_e 4 bits, U32, @OFFSET@, [0:0], "false", "true"
|
||||||
bit isIdleThreadEnabled
|
bit isIdleThreadEnabled
|
||||||
bit isPrintTriggerSynchDetails
|
bit isPrintTriggerSynchDetails
|
||||||
bit isManualSpinningMode;Usually if we have no trigger events that means engine is stopped\nUnless we are troubleshooting and spinning the engine by hand - this case a longer\ndelay is needed
|
bit isManualSpinningMode;Usually if we have no trigger events that means engine is stopped\nUnless we are troubleshooting and spinning the engine by hand - this case a longer\ndelay is needed
|
||||||
bit twoWireBatchInjection;+This is needed if batched injection and individual injector wiring
|
bit twoWireBatchInjection;+This is needed if batched injection and individual injector wiring\nenable two_wire_batch_injection
|
||||||
bit useOnlyRisingEdgeForTrigger;+VR sensors are only precise on rising front
|
bit useOnlyRisingEdgeForTrigger;+VR sensors are only precise on rising front
|
||||||
bit twoWireBatchIgnition;+This is needed if batched igniton (waster spark) and individual coil wiring
|
bit twoWireBatchIgnition;+This is needed if batched igniton (waster spark) and individual coil wiring
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ enable2ndByteCanID = false
|
||||||
|
|
||||||
; see PAGE_0_SIZE in C source code
|
; see PAGE_0_SIZE in C source code
|
||||||
; CONFIG_DEFINITION_START
|
; CONFIG_DEFINITION_START
|
||||||
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Sep 11 22:19:47 EDT 2016
|
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon Sep 12 21:38:15 EDT 2016
|
||||||
|
|
||||||
pageSize = 16376
|
pageSize = 16376
|
||||||
page = 1
|
page = 1
|
||||||
|
@ -706,7 +706,7 @@ page = 1
|
||||||
vvtCamSensorUseRise = "Use rise or fall signal front"
|
vvtCamSensorUseRise = "Use rise or fall signal front"
|
||||||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||||
isCylinderCleanupEnabled = "If TPS above 95% no fuel would be injected during cranking"
|
isCylinderCleanupEnabled = "If TPS above 95% no fuel would be injected during cranking"
|
||||||
twoWireBatchInjection = "This is needed if batched injection and individual injector wiring"
|
twoWireBatchInjection = "This is needed if batched injection and individual injector wiring\nenable two_wire_batch_injection"
|
||||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front"
|
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front"
|
||||||
twoWireBatchIgnition = "This is needed if batched igniton (waster spark) and individual coil wiring"
|
twoWireBatchIgnition = "This is needed if batched igniton (waster spark) and individual coil wiring"
|
||||||
ignMathCalculateAtIndex = "At what trigger index should some ignition-related math be executed? This is a performance trick to reduce load on synchronization trigger callback."
|
ignMathCalculateAtIndex = "At what trigger index should some ignition-related math be executed? This is a performance trick to reduce load on synchronization trigger callback."
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.rusefi.ui;
|
package com.rusefi.ui;
|
||||||
|
|
||||||
import com.rusefi.ConfigurationImage;
|
import com.rusefi.ConfigurationImage;
|
||||||
|
import com.rusefi.FileLog;
|
||||||
import com.rusefi.binaryprotocol.BinaryProtocol;
|
import com.rusefi.binaryprotocol.BinaryProtocol;
|
||||||
import com.rusefi.config.Fields;
|
import com.rusefi.config.Fields;
|
||||||
import com.rusefi.core.Sensor;
|
import com.rusefi.core.Sensor;
|
||||||
|
@ -32,6 +33,16 @@ public class FormulasPane {
|
||||||
|
|
||||||
centerProxy.add(new JLabel("Waiting for data..."), BorderLayout.CENTER);
|
centerProxy.add(new JLabel("Waiting for data..."), BorderLayout.CENTER);
|
||||||
|
|
||||||
|
JButton saveImage = UiUtils.createSaveImageButton();
|
||||||
|
saveImage.addActionListener(new ActionListener() {
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
String fileName = FileLog.getDate() + "_formulas.png";
|
||||||
|
|
||||||
|
UiUtils.saveImageWithPrompt(fileName, centerProxy, centerProxy);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
final JButton pauseButton = UiUtils.createPauseButton();
|
final JButton pauseButton = UiUtils.createPauseButton();
|
||||||
pauseButton.addActionListener(new ActionListener() {
|
pauseButton.addActionListener(new ActionListener() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -41,6 +52,7 @@ public class FormulasPane {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
JPanel top = new JPanel(new FlowLayout());
|
JPanel top = new JPanel(new FlowLayout());
|
||||||
|
top.add(saveImage);
|
||||||
top.add(pauseButton);
|
top.add(pauseButton);
|
||||||
content.add(top, BorderLayout.NORTH);
|
content.add(top, BorderLayout.NORTH);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue