diff options
author | 2020-06-11 19:21:37 +0200 | |
---|---|---|
committer | 2020-06-11 19:21:37 +0200 | |
commit | 6e233bec029810716c5a48113b22f4446204cfab (patch) | |
tree | d3e64006a7b310d34d82df7aa2a4467c03595e55 /macros/src/codegen/resources_struct.rs | |
parent | 4a0393f756cc3ccd480f839eb6b6a9349326fe8e (diff) | |
parent | 602a5b4374961dbcf7f3290053ab9b01f0622c67 (diff) | |
download | rtic-6e233bec029810716c5a48113b22f4446204cfab.tar.gz rtic-6e233bec029810716c5a48113b22f4446204cfab.tar.zst rtic-6e233bec029810716c5a48113b22f4446204cfab.zip |
Merge pull request #325 from AfoHT/rtic-rename
Rename RTFM to RTIC
Diffstat (limited to 'macros/src/codegen/resources_struct.rs')
-rw-r--r-- | macros/src/codegen/resources_struct.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/src/codegen/resources_struct.rs b/macros/src/codegen/resources_struct.rs index 07a60616..994e751c 100644 --- a/macros/src/codegen/resources_struct.rs +++ b/macros/src/codegen/resources_struct.rs @@ -1,6 +1,6 @@ use proc_macro2::TokenStream as TokenStream2; use quote::quote; -use rtfm_syntax::{ast::App, Context}; +use rtic_syntax::{ast::App, Context}; use crate::{analyze::Analysis, codegen::util}; @@ -164,7 +164,7 @@ pub fn codegen( let arg = if ctxt.is_init() { None } else { - Some(quote!(priority: &#lt rtfm::export::Priority)) + Some(quote!(priority: &#lt rtic::export::Priority)) }; let constructor = quote!( #cfg_core |