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

Allow the construction of Delay using the clock::v2 API #803

Merged
merged 4 commits into from
Jan 6, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Cargo fmt
  • Loading branch information
rnd-ash committed Jan 6, 2025
commit ca1e48659ca6541588b3b63329c28bc299da8f5d
10 changes: 5 additions & 5 deletions hal/src/delay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ use crate::time::Hertz;
use crate::typelevel::Increment;

#[hal_cfg("rtc-d5x")]
use crate::clock::v2::{
Source, gclk::Gclk0Id
};
use crate::clock::v2::{gclk::Gclk0Id, Source};

/// System timer (SysTick) as a delay provider
pub struct Delay {
Expand All @@ -38,14 +36,16 @@ impl Delay {
/// Configures the system timer (SysTick) as a delay provide, compatible
/// with the V2 clocking API
pub fn new_with_source<S>(mut syst: SYST, gclk0: S) -> (Self, S::Inc)
where S: Source<Id = Gclk0Id> + Increment {
where
S: Source<Id = Gclk0Id> + Increment,
{
syst.set_clock_source(SystClkSource::Core);
(
Delay {
syst,
sysclock: gclk0.freq(),
},
gclk0.inc()
gclk0.inc(),
)
}

Expand Down
Loading