diff --git a/firmware/console/binary/tunerstudio_configuration.h b/firmware/console/binary/tunerstudio_configuration.h index ff914e4b84..b07c35b091 100644 --- a/firmware/console/binary/tunerstudio_configuration.h +++ b/firmware/console/binary/tunerstudio_configuration.h @@ -91,7 +91,9 @@ typedef struct { float tpsAccelFuel; float baroCorrection; float pedalPosition; - int unused3[14]; + float injectorDutyCycle; + int knockCount; + int unused3[12]; } TunerStudioOutputChannels; #endif /* TUNERSTUDIO_CONFIGURATION_H_ */ diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index 2dbbcf21de..970148db7e 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -291,5 +291,5 @@ int getRusEfiVersion(void) { return 123; // this is here to make the compiler happy about the unused array if (UNUSED_CCM_SIZE[0] * 0 != 0) return 3211; // this is here to make the compiler happy about the unused array - return 20150531; + return 20150601; }