Merge pull request #71 from josephpenafiel/patch-1

added missing import
This commit is contained in:
Daniel Egger
2019-07-10 00:09:51 +02:00
committed by GitHub

View File

@@ -27,7 +27,7 @@ extern crate panic_halt;
use cortex_m::peripheral::syst::SystClkSource;
use cortex_m_rt::entry;
use cortex_m_semihosting::hprint;
use stm32f30x::{interrupt, Interrupt};
use stm32f30x::{interrupt, Interrupt, NVIC};
#[entry]
fn main() -> ! {