Skip to content

Commit

Permalink
whack
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobrosenthal committed Jun 28, 2020
1 parent a9c3c0b commit f6c4e93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pub mod adc;
pub mod bb;
#[cfg(all(
feature = "device-selected",
not(any(feature = "stm32f411", feature = "stm32f412",))
not(any(feature = "stm32f411", feature = "stm32f412", feature = "stm32f401",))
))]
pub mod dac;
#[cfg(feature = "device-selected")]
Expand Down
2 changes: 1 addition & 1 deletion src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub use embedded_hal::prelude::*;

#[cfg(all(
feature = "device-selected",
not(any(feature = "stm32f411", feature = "stm32f412",))
not(any(feature = "stm32f411", feature = "stm32f412", feature = "stm32f401",))
))]
pub use crate::dac::DacExt as _stm32f4xx_hal_dac_DacExt;
pub use crate::gpio::GpioExt as _stm32f4xx_hal_gpio_GpioExt;
Expand Down

0 comments on commit f6c4e93

Please sign in to comment.