1 2 3 4 5 6 7 8
pub fn interrupt_disable() void { asm volatile("cpsid i"); } pub fn interrupt_enable() void { asm volatile("cpsie i"); }