Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Wrong averaging of commutation period during startup phase
The update used `C_P4x / 2 + C_P`. This has been changed to reuse normal routine: `C_P4x - (C_P4x / 4) + C_P`. Alternatively: `C_P4x / 2 + C_P * 2` could have been an option.
- Loading branch information