auto-sync
This commit is contained in:
parent
157403ffe8
commit
6384c3987f
|
@ -65,6 +65,9 @@ void setDodgeRam1996(DECLARE_ENGINE_PARAMETER_F) {
|
|||
// set_global_trigger_offset_angle -50
|
||||
engineConfiguration->globalTriggerAngleOffset = -50;
|
||||
|
||||
// set_global_fuel_correction 1
|
||||
|
||||
|
||||
boardConfiguration->alternatorControlPin = GPIOD_7;
|
||||
engineConfiguration->alternatorControlPFactor = 22;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated by config_definition.jar on Tue May 12 20:03:20 EDT 2015
|
||||
// this section was generated by config_definition.jar on Wed May 13 20:30:29 EDT 2015
|
||||
// begin
|
||||
#include "rusefi_types.h"
|
||||
typedef struct {
|
||||
|
@ -634,7 +634,7 @@ typedef struct {
|
|||
/**
|
||||
* offset 868
|
||||
*/
|
||||
int unusedbs;
|
||||
int alternatorDT;
|
||||
/** total size 872*/
|
||||
} board_configuration_s;
|
||||
|
||||
|
@ -1302,4 +1302,4 @@ typedef struct {
|
|||
} persistent_config_s;
|
||||
|
||||
// end
|
||||
// this section was generated by config_definition.jar on Tue May 12 20:03:20 EDT 2015
|
||||
// this section was generated by config_definition.jar on Wed May 13 20:30:29 EDT 2015
|
||||
|
|
|
@ -515,7 +515,7 @@
|
|||
#define fsioDigitalInputs14_offset 1480
|
||||
#define fsioDigitalInputs15_offset 1484
|
||||
#define fsioDigitalInputs16_offset 1488
|
||||
#define unusedbs_offset 1492
|
||||
#define alternatorDT_offset 1492
|
||||
#define hasMapSensor_offset 1496
|
||||
#define hasIatSensor_offset 1496
|
||||
#define hasBaroSensor_offset 1496
|
||||
|
|
|
@ -434,7 +434,7 @@ brain_input_pin_e vehicleSpeedSensorInputPin;
|
|||
pin_input_mode_e clutchUpPinMode;
|
||||
brain_pin_e[LE_COMMAND_COUNT iterate] fsioDigitalInputs;These input pins allow us to pull toggle buttons state;
|
||||
|
||||
int unusedbs;
|
||||
int alternatorDT;
|
||||
|
||||
|
||||
end_struct
|
||||
|
|
|
@ -32,7 +32,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
|||
* @see com.rusefi.StartupFrame
|
||||
*/
|
||||
public class Launcher {
|
||||
public static final int CONSOLE_VERSION = 20150510;
|
||||
public static final int CONSOLE_VERSION = 20150513;
|
||||
public static final boolean SHOW_STIMULATOR = false;
|
||||
private static final String TAB_INDEX = "main_tab";
|
||||
protected static final String PORT_KEY = "port";
|
||||
|
|
|
@ -64,6 +64,7 @@ public class RecentCommands {
|
|||
private void addDefaults() {
|
||||
add("help");
|
||||
add("showconfig");
|
||||
add("stopengine");
|
||||
add("analoginfo");
|
||||
add("triggerinfo");
|
||||
add("writeconfig");
|
||||
|
@ -76,8 +77,10 @@ public class RecentCommands {
|
|||
add("enable self_stimulation");
|
||||
add("disable self_stimulation");
|
||||
|
||||
add("set_idle_position 50");
|
||||
add("sparkbench 5 400 2");
|
||||
add("fuelbench 5 400 2");
|
||||
add("idleinfo");
|
||||
add("altinfo");
|
||||
add("accelinfo");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue