aboutsummaryrefslogtreecommitdiff
path: root/rtic-macros/src/codegen/async_dispatchers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rtic-macros/src/codegen/async_dispatchers.rs')
-rw-r--r--rtic-macros/src/codegen/async_dispatchers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtic-macros/src/codegen/async_dispatchers.rs b/rtic-macros/src/codegen/async_dispatchers.rs
index bdbfeaa7..289a63b5 100644
--- a/rtic-macros/src/codegen/async_dispatchers.rs
+++ b/rtic-macros/src/codegen/async_dispatchers.rs
@@ -42,7 +42,7 @@ pub fn codegen(app: &App, analysis: &Analysis) -> TokenStream2 {
let device = &app.args.device;
let enum_ = util::interrupt_ident();
- quote!(rtic::pend(#device::#enum_::#dispatcher_name);)
+ quote!(rtic::export::pend(#device::#enum_::#dispatcher_name);)
} else {
// For 0 priority tasks we don't need to pend anything
quote!()