This commit is contained in:
Dylan McKay 2018-11-05 23:35:46 +13:00
parent aecd4edb36
commit 3fbe33504a
2 changed files with 2 additions and 5 deletions

View File

@ -1,7 +1,6 @@
//! Definitions of register addresses and bits within those registers //! Definitions of register addresses and bits within those registers
#![feature(asm)] #![feature(asm)]
#![feature(no_core)]
#![feature(const_fn)] #![feature(const_fn)]
#![feature(associated_consts)] #![feature(associated_consts)]
#![feature(associated_type_defaults)] #![feature(associated_type_defaults)]
@ -10,10 +9,6 @@
#![feature(panic_handler)] #![feature(panic_handler)]
#![feature(unwind_attributes)] #![feature(unwind_attributes)]
#![no_core]
#![no_std]
pub use self::register::{Register, RegisterBits, RegisterValue}; pub use self::register::{Register, RegisterBits, RegisterValue};
pub use self::pin::{DataDirection, Pin}; pub use self::pin::{DataDirection, Pin};

View File

@ -1,4 +1,6 @@
//! Re-exports commonly-used APIs that can be imported at once. //! Re-exports commonly-used APIs that can be imported at once.
use core::prelude::v1::*;
pub use interrupt::without_interrupts; pub use interrupt::without_interrupts;