auto-sync

This commit is contained in:
rusEfi 2014-12-16 18:03:47 -06:00
parent dc2b996ddd
commit 4294ca83f4
2 changed files with 6 additions and 3 deletions

View File

@ -48,11 +48,14 @@ extern "C"
#define getOneDegreeTimeMs(rpm) (1000.0f * 60 / 360 / (rpm))
/**
* @return time needed to rotate crankshaft by one degree, in microseconds.
* @return float, time needed to rotate crankshaft by one degree, in microseconds.
*/
#define getOneDegreeTimeUs(rpm) (1000000.0f * 60 / 360 / (rpm))
#define getOneDegreeTimeNt(rpm) (US2NT(1000000.0f) * 60 / 360 / (rpm))
/**
* @return float, time needed to rotate crankshaft by one degree, in native clicks.
*/
#define getOneDegreeTimeNt(rpm) (US2NT(1000000) * 60.0f / 360 / (rpm))
float getCrankshaftRevolutionTimeMs(int rpm);

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 20141215;
return 20141216;
}