auto-sync
This commit is contained in:
parent
2d398a7bf0
commit
7a4df79eee
|
@ -64,7 +64,7 @@ typedef struct {
|
|||
* water 4 bytes per traffic - I want gauges to work as fast as possible
|
||||
*/
|
||||
unsigned int hasSdCard : 1; // bit 0
|
||||
unsigned int ignition_enabled : 1; // bit 1
|
||||
unsigned int isIgnitionEnabled : 1; // bit 1
|
||||
unsigned int injection_enabled : 1; // bit 2
|
||||
unsigned int cylinder_cleanup_enabled : 1; // bit 3
|
||||
unsigned int cylinder_cleanup_activated : 1; // bit 4
|
||||
|
@ -75,7 +75,9 @@ typedef struct {
|
|||
unsigned int needBurn : 1; // bit 9
|
||||
unsigned int secondTriggerChannelEnabled : 1; // bit 10
|
||||
unsigned int clutchUpState : 1; // bit 11
|
||||
unsigned int clutchDownState : 1; // bit 11
|
||||
unsigned int clutchDownState : 1; // bit 12
|
||||
unsigned int knockEverIndicator : 1; // bit 13
|
||||
unsigned int knockNowIndicator : 1; // bit 14
|
||||
float vehicleSpeedKph;
|
||||
unsigned int isTpsError : 1; // bit 0
|
||||
unsigned int isCltError : 1; // bit 1
|
||||
|
|
|
@ -575,7 +575,7 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_
|
|||
tsOutputChannels->isFuelPumpOn = enginePins.fuelPumpRelay.getLogicValue();
|
||||
tsOutputChannels->isFanOn = enginePins.fanRelay.getLogicValue();
|
||||
tsOutputChannels->isO2HeaterOn = enginePins.o2heater.getLogicValue();
|
||||
tsOutputChannels->ignition_enabled = engineConfiguration->isIgnitionEnabled;
|
||||
tsOutputChannels->isIgnitionEnabled = engineConfiguration->isIgnitionEnabled;
|
||||
tsOutputChannels->injection_enabled = engineConfiguration->isInjectionEnabled;
|
||||
tsOutputChannels->cylinder_cleanup_enabled = engineConfiguration->isCylinderCleanupEnabled;
|
||||
tsOutputChannels->cylinder_cleanup_activated = engine->isCylinderCleanupMode;
|
||||
|
|
|
@ -348,6 +348,8 @@ void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
|||
|
||||
engineConfiguration->acSwitchAdc = EFI_ADC_NONE;
|
||||
|
||||
engineConfiguration->externalKnockSenseAdc = EFI_ADC_NONE;
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
engineConfiguration->digitalChartSize = 300;
|
||||
#else
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated by config_definition.jar on Tue Mar 10 21:53:57 EDT 2015
|
||||
// this section was generated by config_definition.jar on Sat Mar 14 19:07:34 EDT 2015
|
||||
// begin
|
||||
#include "rusefi_types.h"
|
||||
typedef struct {
|
||||
|
@ -1074,7 +1074,11 @@ typedef struct {
|
|||
/**
|
||||
* offset 5204
|
||||
*/
|
||||
int unused3[144];
|
||||
adc_channel_e externalKnockSenseAdc;
|
||||
/**
|
||||
* offset 5208
|
||||
*/
|
||||
int unused3[143];
|
||||
/**
|
||||
* offset 5780
|
||||
*/
|
||||
|
@ -1178,4 +1182,4 @@ typedef struct {
|
|||
} engine_configuration_s;
|
||||
|
||||
// end
|
||||
// this section was generated by config_definition.jar on Tue Mar 10 21:53:57 EDT 2015
|
||||
// this section was generated by config_definition.jar on Sat Mar 14 19:07:34 EDT 2015
|
||||
|
|
|
@ -471,7 +471,8 @@ bit hasMapSensor;@see isMapAveragingEnabled
|
|||
custom pin_input_mode_e 4 scalar, F32, @OFFSET@, "ms", 1, 0, 0, 200, 1
|
||||
pin_input_mode_e[LE_COMMAND_COUNT iterate] fsioInputModes;
|
||||
|
||||
int[144] unused3;
|
||||
adc_channel_e externalKnockSenseAdc;
|
||||
int[143] unused3;
|
||||
|
||||
int accelLength;;"len", 1, 0, 0, 200, 3
|
||||
|
||||
|
|
Loading…
Reference in New Issue