mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 20:35:33 +03:00
Merge pull request #3159 from martinbudden/bf_scheduler_reset
Fix in schedulerResetTaskStatistics
This commit is contained in:
commit
aa3f08ebae
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ void schedulerResetTaskStatistics(cfTaskId_e taskId)
|
|||
} else if (taskId < TASK_COUNT) {
|
||||
cfTasks[taskId].movingSumExecutionTime = 0;
|
||||
cfTasks[taskId].totalExecutionTime = 0;
|
||||
cfTasks[taskId].totalExecutionTime = 0;
|
||||
cfTasks[taskId].maxExecutionTime = 0;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue