MapAveragingCallback schedules all cylinders at once #974
This commit is contained in:
parent
e7559db170
commit
366805a1ab
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue