auto-sync
This commit is contained in:
parent
d3a73d148b
commit
53aa86ef29
|
@ -31,6 +31,7 @@ void setFordInline6(engine_configuration_s *engineConfiguration, board_configura
|
||||||
engineConfiguration->firingOrder = FO_1_THEN_5_THEN_3_THEN_6_THEN_2_THEN_4;
|
engineConfiguration->firingOrder = FO_1_THEN_5_THEN_3_THEN_6_THEN_2_THEN_4;
|
||||||
engineConfiguration->crankingInjectionMode = IM_SIMULTANEOUS;
|
engineConfiguration->crankingInjectionMode = IM_SIMULTANEOUS;
|
||||||
engineConfiguration->injectionMode = IM_BATCH;
|
engineConfiguration->injectionMode = IM_BATCH;
|
||||||
|
engineConfiguration->twoWireBatch = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 0.5ms dweel time just to be sure it would fit within camshaft revolution, dwell is not controlled by us anyway
|
* 0.5ms dweel time just to be sure it would fit within camshaft revolution, dwell is not controlled by us anyway
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// this section was generated by config_definition.jar on Sat Jan 31 07:43:00 EST 2015
|
// this section was generated by config_definition.jar on Sat Jan 31 08:21:49 EST 2015
|
||||||
// begin
|
// begin
|
||||||
#include "rusefi_types.h"
|
#include "rusefi_types.h"
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -311,7 +311,7 @@ typedef struct {
|
||||||
/**
|
/**
|
||||||
* offset 284
|
* offset 284
|
||||||
*/
|
*/
|
||||||
brain_pin_e triggerInputPins[3];
|
brain_input_pin_e triggerInputPins[3];
|
||||||
/**
|
/**
|
||||||
* offset 296
|
* offset 296
|
||||||
*/
|
*/
|
||||||
|
@ -396,7 +396,7 @@ typedef struct {
|
||||||
/**
|
/**
|
||||||
* offset 376
|
* offset 376
|
||||||
*/
|
*/
|
||||||
brain_pin_e logicAnalyzerPins[LOGIC_ANALYZER_CHANNEL_COUNT];
|
brain_input_pin_e logicAnalyzerPins[LOGIC_ANALYZER_CHANNEL_COUNT];
|
||||||
/**
|
/**
|
||||||
* default or inverted input
|
* default or inverted input
|
||||||
* offset 392
|
* offset 392
|
||||||
|
@ -1112,4 +1112,4 @@ typedef struct {
|
||||||
} engine_configuration_s;
|
} engine_configuration_s;
|
||||||
|
|
||||||
// end
|
// end
|
||||||
// this section was generated by config_definition.jar on Sat Jan 31 07:43:00 EST 2015
|
// this section was generated by config_definition.jar on Sat Jan 31 08:21:49 EST 2015
|
||||||
|
|
|
@ -91,6 +91,8 @@ typedef int16_t fsio_pwm_freq_t;
|
||||||
|
|
||||||
typedef float fsio_setting_t;
|
typedef float fsio_setting_t;
|
||||||
|
|
||||||
|
typedef brain_pin_e brain_input_pin_e;
|
||||||
|
|
||||||
typedef fuel_table_t ve_table_t;
|
typedef fuel_table_t ve_table_t;
|
||||||
typedef fuel_table_t afr_table_t;
|
typedef fuel_table_t afr_table_t;
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
|
|
||||||
java -jar ../java_tools/ConfigDefinition.jar . controllers\algo
|
java -jar ../java_tools/ConfigDefinition.jar . tunerstudio controllers\algo
|
Loading…
Reference in New Issue