MapAveragingCallback schedules all cylinders at once #974

This commit is contained in:
rusefi 2019-11-24 23:20:24 -05:00
parent e7559db170
commit 366805a1ab
2 changed files with 1 additions and 2 deletions

View File

@ -207,6 +207,7 @@ static Overflow64Counter halTime;
*/
//todo: macro to save method invocation
efitimeus_t getTimeNowUs(void) {
ScopePerf perf(PE::ScheduleByAngle);
return getTimeNowNt() / (CORE_CLOCK / 1000000);
}

View File

@ -360,8 +360,6 @@ void initRpmCalculator(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX) {
*/
void scheduleByAngle(scheduling_s *timer, angle_t angle,
schfunc_t callback, void *param DECLARE_ENGINE_PARAMETER_SUFFIX) {
ScopePerf perf(PE::ScheduleByAngle);
float delayUs = ENGINE(rpmCalculator.oneDegreeUs) * angle;
ENGINE(executor.scheduleForLater(timer, (int) delayUs, callback, param));
}