Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix computation of timer frequency #434

Merged
merged 1 commit into from
Aug 26, 2022
Merged

Conversation

SnVIZQ
Copy link
Contributor

@SnVIZQ SnVIZQ commented Aug 25, 2022

Retrieving timer frequency using PwmHz::get_period() function can cause
division by zero exception for certain types of frequencies which are
configured by having zero in any of the PSC or ARR register - current
implementation uses "clk / (psc * arr)" expression to compute the
frequency.

Implementation of compute_arr_presc() sets PSC and ARR registers
correctly. Performing inverse computation leads to different expression:
"clk / ((psc + 1) * (arr + 1))" which properly computes timer frequency
from PSC and ARR registers. This patch uses new/fixed expression for
computing timer frequency.

Change log was modified.

Retrieving timer frequency using PwmHz::get_period() function can cause
division by zero exception for certain types of frequencies which are
configured by having zero in any of the PSC or ARR register - current
implementation uses "clk / (psc * arr)" expression to compute the
frequency.

Implementation of compute_arr_presc() sets PSC and ARR registers
correctly. Performing inverse computation leads to different expression:
"clk / ((psc + 1) * (arr + 1))" which properly computes timer frequency
from PSC and ARR registers. This patch uses new/fixed expression for
computing timer frequency.
@burrbull
Copy link
Contributor

bors r+

@bors
Copy link
Contributor

bors bot commented Aug 26, 2022

@bors bors bot merged commit 8f3f3be into stm32-rs:master Aug 26, 2022
bors bot added a commit to stm32-rs/stm32f4xx-hal that referenced this pull request Aug 26, 2022
518: fix PwmHz::get_period r=therealprof a=burrbull

See stm32-rs/stm32f1xx-hal#434

Co-authored-by: Andrey Zgarbul <zgarbul.andrey@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants