-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathdelay-timer-blinky.rs
53 lines (44 loc) · 1.35 KB
/
delay-timer-blinky.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//! Demonstrate the use of a blocking `Delay` using TIM5 general-purpose timer.
#![deny(unsafe_code)]
#![allow(clippy::empty_loop)]
#![no_main]
#![no_std]
// Halt on panic
use panic_halt as _; // panic handler
use cortex_m_rt::entry;
use stm32f7xx_hal as hal;
use crate::hal::{
pac,
prelude::*,
rcc::{HSEClock, HSEClockMode},
};
#[entry]
fn main() -> ! {
if let (Some(dp), Some(_cp)) = (
pac::Peripherals::take(),
cortex_m::peripheral::Peripherals::take(),
) {
// Set up the LED. On the Mini-F4 it's connected to pin PC13.
let gpioc = dp.GPIOC.split();
let mut led = gpioc.pc13.into_push_pull_output();
// Set up the system clock. We want to run at 48MHz for this one.
let rcc = dp.RCC.constrain();
let clocks = rcc
.cfgr
.hse(HSEClock::new(25.MHz(), HSEClockMode::Bypass))
.sysclk(48.MHz())
.freeze();
// Create a delay abstraction based on general-pupose 32-bit timer TIM5
let mut delay = dp.TIM5.delay_us(&clocks);
loop {
// On for 1s, off for 3s.
led.set_high();
// Use `embedded_hal::DelayMs` trait
delay.delay_ms(1000_u32);
led.set_low();
// or use `fugit::ExtU32` trait
delay.delay(3.secs());
}
}
loop {}
}