diff options
author | 2020-10-22 17:11:21 +0000 | |
---|---|---|
committer | 2020-10-22 17:11:21 +0000 | |
commit | b3aa9e99a975eca637582f31de20fe11ae8f7d64 (patch) | |
tree | 312e7313d052be9233fd9c2be9b52a091aac9ae6 /macros/src/codegen/module.rs | |
parent | 9fb5a223cb8adb01381650b66eab28ea5abc98ed (diff) | |
parent | 86699039e99229049ee3c739eaf860acc70a1bf7 (diff) | |
download | rtic-b3aa9e99a975eca637582f31de20fe11ae8f7d64.tar.gz rtic-b3aa9e99a975eca637582f31de20fe11ae8f7d64.tar.zst rtic-b3aa9e99a975eca637582f31de20fe11ae8f7d64.zip |
Merge #398
398: Add the cfgs on a task to the module for that task r=korken89 a=AfoHT
Applying a `#[cfg(never)]` on a task:
before:
```
#[allow(non_snake_case)]
#[doc = "Software task"]
pub mod foo2 {
#[doc(inline)]
pub use super::foo2Resources as Resources;
#[doc = r" Execution context"]
pub struct Context<'a> {
#[doc = r" Resources this task has access to"]
pub resources: Resources<'a>,
}
impl<'a> Context<'a> {
#[inline(always)]
pub unsafe fn new(priority: &'a rtic::export::Priority) -> Self {
Context {
resources: Resources::new(priority),
}
}
}
<...>
```
After:
```
#[allow(non_snake_case)]
#[cfg(never)]
#[doc = "Software task"]
pub mod foo2 {
#[doc(inline)]
pub use super::foo2Resources as Resources;
#[doc = r" Execution context"]
pub struct Context<'a> {
#[doc = r" Resources this task has access to"]
pub resources: Resources<'a>,
}
impl<'a> Context<'a> {
#[inline(always)]
pub unsafe fn new(priority: &'a rtic::export::Priority) -> Self {
Context {
resources: Resources::new(priority),
}
}
}
<...>
```
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
Diffstat (limited to 'macros/src/codegen/module.rs')
-rw-r--r-- | macros/src/codegen/module.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/macros/src/codegen/module.rs b/macros/src/codegen/module.rs index e3b0ed9b..a5b61394 100644 --- a/macros/src/codegen/module.rs +++ b/macros/src/codegen/module.rs @@ -14,6 +14,8 @@ pub fn codegen( let mut items = vec![]; let mut fields = vec![]; let mut values = vec![]; + // Used to copy task cfgs to the whole module + let mut task_cfgs = vec![]; let name = ctxt.ident(app); @@ -191,6 +193,8 @@ pub fn codegen( let priority = spawnee.args.priority; let t = util::spawn_t_ident(priority); let cfgs = &spawnee.cfgs; + // Store a copy of the task cfgs + task_cfgs = cfgs.clone(); let (args, tupled, _untupled, ty) = util::regroup_inputs(&spawnee.inputs); let args = &args; let tupled = &tupled; @@ -285,6 +289,7 @@ pub fn codegen( quote!( #[allow(non_snake_case)] + #(#task_cfgs)* #[doc = #doc] pub mod #name { #( |