diff options
author | 2021-08-20 06:50:43 +0000 | |
---|---|---|
committer | 2021-08-20 06:50:43 +0000 | |
commit | f77b81e0eec2fa9053911d84f02b9a78b84486ec (patch) | |
tree | c39efb7e0259faef3f9ca03ac87b9d525c1e6093 /macros/src/codegen/timer_queue.rs | |
parent | 3bf5a4f7a06fdb5d341d900c3e937d4c9afd2dda (diff) | |
parent | cdbd8a2cede668e1181030bd7c439592a8f0e980 (diff) | |
download | rtic-f77b81e0eec2fa9053911d84f02b9a78b84486ec.tar.gz rtic-f77b81e0eec2fa9053911d84f02b9a78b84486ec.tar.zst rtic-f77b81e0eec2fa9053911d84f02b9a78b84486ec.zip |
Merge #515
515: `mark_internal_ident` cleanup r=korken89 a=datdenkikniet
Refactor so that all `idents` that had to call `mark_ident_internal` before now call `mark_name_internal` in the `util` module by default.
The commits can (and probably should) be squashed, they're separated for clarity.
Fixes #512
Co-authored-by: datdenkikniet <jcdra1@gmail.com>
Diffstat (limited to 'macros/src/codegen/timer_queue.rs')
-rw-r--r-- | macros/src/codegen/timer_queue.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/macros/src/codegen/timer_queue.rs b/macros/src/codegen/timer_queue.rs index e805292a..fdfa6381 100644 --- a/macros/src/codegen/timer_queue.rs +++ b/macros/src/codegen/timer_queue.rs @@ -10,7 +10,7 @@ pub fn codegen(app: &App, analysis: &Analysis, _extra: &Extra) -> Vec<TokenStrea if !app.monotonics.is_empty() { // Generate the marker counter used to track for `cancel` and `reschedule` - let tq_marker = util::mark_internal_ident(&util::timer_queue_marker_ident()); + let tq_marker = util::timer_queue_marker_ident(); items.push(quote!( // #[doc = #doc] #[doc(hidden)] @@ -53,11 +53,9 @@ pub fn codegen(app: &App, analysis: &Analysis, _extra: &Extra) -> Vec<TokenStrea for (_, monotonic) in &app.monotonics { let monotonic_name = monotonic.ident.to_string(); let tq = util::tq_ident(&monotonic_name); - let tq = util::mark_internal_ident(&tq); let t = util::schedule_t_ident(); let mono_type = &monotonic.ty; let m_ident = util::monotonic_ident(&monotonic_name); - let m_ident = util::mark_internal_ident(&m_ident); // Static variables and resource proxy { @@ -82,7 +80,6 @@ pub fn codegen(app: &App, analysis: &Analysis, _extra: &Extra) -> Vec<TokenStrea )); let mono = util::monotonic_ident(&monotonic_name); - let mono = util::mark_internal_ident(&mono); // For future use // let doc = &format!("Storage for {}", monotonic_name); @@ -106,7 +103,6 @@ pub fn codegen(app: &App, analysis: &Analysis, _extra: &Extra) -> Vec<TokenStrea let cfgs = &task.cfgs; let priority = task.args.priority; let rq = util::rq_ident(priority); - let rq = util::mark_internal_ident(&rq); let rqt = util::spawn_t_ident(priority); // The interrupt that runs the task dispatcher |