auto-sync

This commit is contained in:
rusEfi 2014-12-08 09:07:14 -06:00
parent 38b2784263
commit e7849bcafd
3 changed files with 3 additions and 3 deletions

View File

@ -119,7 +119,7 @@
#define EFI_WAVE_CHART TRUE
#define EFI_HISTOGRAMS FAPSE
#define EFI_HISTOGRAMS FALSE
#define EFI_ANALOG_CHART TRUE
#if defined __GNUC__

View File

@ -358,7 +358,7 @@ void mainTriggerCallback(trigger_event_e ckpSignalType, uint32_t eventIndex DECL
* but we are already repurposing the output signals, but everything works because we
* are not affecting that space in memory. todo: use two instances of 'ignitionSignals'
*/
float maxAllowedDwellAngle = engineConfiguration->engineCycle / 2;
float maxAllowedDwellAngle = (int)(engineConfiguration->engineCycle / 2); // the cast is about making Coverity happy
if (engineConfiguration->ignitionMode == IM_ONE_COIL) {
maxAllowedDwellAngle = engineConfiguration->engineCycle / engineConfiguration->cylindersCount / 1.1;

View File

@ -265,5 +265,5 @@ int getRusEfiVersion(void) {
return 1; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE == 0)
return 1; // this is here to make the compiler happy about the unused array
return 20141207;
return 20141208;
}