File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 21
21
#![ allow( non_camel_case_types) ]
22
22
#![ allow( non_snake_case) ]
23
23
#![ no_std]
24
- extern crate bare_metal;
25
24
extern crate cortex_m;
26
25
#[ cfg( feature = "rt" ) ]
27
26
extern crate cortex_m_rt;
@@ -422,10 +421,10 @@ pub enum Interrupt {
422
421
#[ doc = "138 - PWM1 Fault" ]
423
422
PWM1_FAULT = 138 ,
424
423
}
425
- unsafe impl bare_metal :: Nr for Interrupt {
424
+ unsafe impl cortex_m :: interrupt :: InterruptNumber for Interrupt {
426
425
#[ inline( always) ]
427
- fn nr ( & self ) -> u8 {
428
- * self as u8
426
+ fn number ( self ) -> u16 {
427
+ self as u16
429
428
}
430
429
}
431
430
#[ cfg( feature = "rt" ) ]
Original file line number Diff line number Diff line change 21
21
#![ allow( non_camel_case_types) ]
22
22
#![ allow( non_snake_case) ]
23
23
#![ no_std]
24
- extern crate bare_metal;
25
24
extern crate cortex_m;
26
25
#[ cfg( feature = "rt" ) ]
27
26
extern crate cortex_m_rt;
@@ -476,10 +475,10 @@ pub enum Interrupt {
476
475
#[ doc = "111 - GPIO T" ]
477
476
GPIOT = 111 ,
478
477
}
479
- unsafe impl bare_metal :: Nr for Interrupt {
478
+ unsafe impl cortex_m :: interrupt :: InterruptNumber for Interrupt {
480
479
#[ inline( always) ]
481
- fn nr ( & self ) -> u8 {
482
- * self as u8
480
+ fn number ( self ) -> u16 {
481
+ self as u16
483
482
}
484
483
}
485
484
#[ cfg( feature = "rt" ) ]
You can’t perform that action at this time.
0 commit comments