Skip to content

Commit

Permalink
Merge pull request #236 from TheZoq2/ra-kete-monotimer-fix
Browse files Browse the repository at this point in the history
Fix `MonoTimer` and `Timer::syst` frequency
  • Loading branch information
therealprof authored Jun 25, 2020
2 parents 30aa5ce + 48eb5fe commit b162517
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

- Fix wrong frequency reported by `MonoTimer`
- Fix wrong timings generated by `Timer::syst`
- Fix period retrieval for timers

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ impl MonoTimer {
drop(dwt);

MonoTimer {
frequency: clocks.sysclk(),
frequency: clocks.hclk(),
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/timer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ impl Timer<SYST> {
syst.set_clock_source(SystClkSource::Core);
Self {
tim: syst,
clk: clocks.sysclk(),
clk: clocks.hclk(),
}
}

Expand Down

0 comments on commit b162517

Please sign in to comment.