File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ stm32c0 = { version = "0.16.0", optional = true }
3636defmt = { version = " 1.0.1" , optional = true }
3737
3838# Embedded-HAL traits and related libs. Featured-gated with `embedded-hal`.
39- embedded-hal = { version = " 1.0.0" , features =[ " defmt-03 " ], optional = true }
40- embedded-io = { version = " 0.6.1" , features =[ " defmt-03 " ], optional = true }
39+ embedded-hal = { version = " 1.0.0" , optional = true }
40+ embedded-io = { version = " 0.6.1" , optional = true }
4141
4242# Enabled with the `monotonic` feature.
4343rtic-monotonic = { version = " 1.0.0" , optional = true }
Original file line number Diff line number Diff line change @@ -363,10 +363,9 @@ macro_rules! set_exti {
363363 exti. c1imr1( ) . modify( |_, w| w. [ <mr $num>] ( ) . bit( true ) ) ;
364364 } else if #[ cfg( any( feature = "g4" , feature = "wb" , feature = "wl" ) ) ] {
365365 exti. imr1( ) . modify( |_, w| w. [ <im $num>] ( ) . bit( true ) ) ;
366+ } else if #[ cfg( feature = "l4" ) ] {
367+ exti. imr1( ) . modify( |_, w| w. [ <mr $num>] ( ) . bit( true ) ) ;
366368 }
367- // else {
368- // exti.imr1().modify(|_, w| w.[<mr $num>]().bit(true));
369- // }
370369 }
371370
372371 cfg_if! {
You can’t perform that action at this time.
0 commit comments