Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis authored and korken89 committed Nov 8, 2023
1 parent b5f9579 commit 994884f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/teensy4_blinky/examples/with_logs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ mod app {
poll_log.set_load_timer_value(LOG_POLL_INTERVAL);
poll_log.enable();

// Initialize the systick interrupt & obtain the token to prove that we did
// Initialize Monotonic
gpt1.set_clock_source(hal::gpt::ClockSource::PeripheralClock);
let gpt1_mono_token = rtic_monotonics::create_imxrt_gpt1_token!();
Mono::start(board::PERCLK_FREQUENCY, gpt1.release(), gpt1_mono_token);
Expand Down
2 changes: 1 addition & 1 deletion examples/teensy4_blinky/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ mod app {
..
} = board::t40(cx.device);

// Initialize the systick interrupt & obtain the token to prove that we did
// Initialize Monotonic
gpt1.set_clock_source(hal::gpt::ClockSource::PeripheralClock);
let gpt1_mono_token = rtic_monotonics::create_imxrt_gpt1_token!();
Mono::start(board::PERCLK_FREQUENCY, gpt1.release(), gpt1_mono_token);
Expand Down

0 comments on commit 994884f

Please sign in to comment.