mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Fix interrupt enum path in monotonic
This commit is contained in:
parent
f1e9b7b2a7
commit
843fd42e20
1 changed files with 2 additions and 2 deletions
|
@ -34,8 +34,8 @@ pub fn codegen(app: &App, _analysis: &Analysis, _extra: &Extra) -> TokenStream2
|
|||
} else {
|
||||
let rt_err = util::rt_err_ident();
|
||||
(
|
||||
quote!(rtic::export::NVIC::unmask(#rt_err::#enum_::#m_isr)),
|
||||
quote!(rtic::pend(#rt_err::#enum_::#m_isr)),
|
||||
quote!(rtic::export::NVIC::unmask(super::super::#rt_err::#enum_::#m_isr)),
|
||||
quote!(rtic::pend(super::super::#rt_err::#enum_::#m_isr)),
|
||||
)
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue