Enable embedded-io on nightly

This commit is contained in:
Mathias
2022-09-09 12:28:35 +02:00
parent b2d0f8d590
commit c495c765df
2 changed files with 14 additions and 32 deletions

View File

@ -8,7 +8,6 @@ pub mod dma;
pub mod gpio;
pub mod interrupt;
pub mod spi;
#[cfg(feature = "time-driver")]
pub mod timer;
pub mod uart;
#[cfg(feature = "nightly")]
@ -109,7 +108,6 @@ pub fn init(_config: config::Config) -> Peripherals {
unsafe {
clocks::init();
#[cfg(feature = "time-driver")]
timer::init();
dma::init();
}