Update for stabilized features
This commit is contained in:
parent
c578960321
commit
175a629b6e
2 changed files with 1 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![feature(destructuring_assignment)]
|
|
||||||
|
|
||||||
use lights_hal::{boot, entry};
|
use lights_hal::{boot, entry};
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![feature(asm)]
|
|
||||||
|
|
||||||
extern crate cortex_m;
|
extern crate cortex_m;
|
||||||
extern crate embedded_hal;
|
extern crate embedded_hal;
|
||||||
|
@ -9,6 +8,7 @@ extern crate panic_halt;
|
||||||
pub use cortex_m::asm::delay;
|
pub use cortex_m::asm::delay;
|
||||||
pub use hal::entry;
|
pub use hal::entry;
|
||||||
|
|
||||||
|
use core::arch::asm;
|
||||||
use core::fmt::Debug;
|
use core::fmt::Debug;
|
||||||
use core::sync::atomic::{compiler_fence, Ordering};
|
use core::sync::atomic::{compiler_fence, Ordering};
|
||||||
use core::u8;
|
use core::u8;
|
||||||
|
|
Loading…
Reference in a new issue