We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c74f7 commit ead44e6Copy full SHA for ead44e6
examples/blinky.rs
@@ -32,8 +32,10 @@ fn main() -> ! {
32
33
loop {
34
dp.GPIOA.odr().write(|w| w.od5().low());
35
- delay.delay_ns(duration);
+ delay.delay_ms(duration);
36
+ log::info!("Off");
37
dp.GPIOA.odr().write(|w| w.od5().high());
38
39
+ log::info!("On");
40
}
41
0 commit comments