Skip to content

Commit 77a40f0

Browse files
amcelroysbourdeauducq
authored andcommitted
Removed bare_metal crate
Implemented cortex_m 0.7.6 pub unsafe trait InterruptNumber
1 parent 3e039a0 commit 77a40f0

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

crates/tm4c123x/src/lib.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#![allow(non_camel_case_types)]
2222
#![allow(non_snake_case)]
2323
#![no_std]
24-
extern crate bare_metal;
2524
extern crate cortex_m;
2625
#[cfg(feature = "rt")]
2726
extern crate cortex_m_rt;
@@ -422,10 +421,10 @@ pub enum Interrupt {
422421
#[doc = "138 - PWM1 Fault"]
423422
PWM1_FAULT = 138,
424423
}
425-
unsafe impl bare_metal::Nr for Interrupt {
424+
unsafe impl cortex_m::interrupt::InterruptNumber for Interrupt {
426425
#[inline(always)]
427-
fn nr(&self) -> u8 {
428-
*self as u8
426+
fn number(self) -> u16 {
427+
self as u16
429428
}
430429
}
431430
#[cfg(feature = "rt")]

crates/tm4c129x/src/lib.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#![allow(non_camel_case_types)]
2222
#![allow(non_snake_case)]
2323
#![no_std]
24-
extern crate bare_metal;
2524
extern crate cortex_m;
2625
#[cfg(feature = "rt")]
2726
extern crate cortex_m_rt;
@@ -476,10 +475,10 @@ pub enum Interrupt {
476475
#[doc = "111 - GPIO T"]
477476
GPIOT = 111,
478477
}
479-
unsafe impl bare_metal::Nr for Interrupt {
478+
unsafe impl cortex_m::interrupt::InterruptNumber for Interrupt {
480479
#[inline(always)]
481-
fn nr(&self) -> u8 {
482-
*self as u8
480+
fn number(self) -> u16 {
481+
self as u16
483482
}
484483
}
485484
#[cfg(feature = "rt")]

0 commit comments

Comments
 (0)