mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
update parser
closes #69 this doesn't change functionality per se but improves diagnostics in some cases. Some hard errors have becomes warnings, for example: when `resources` is empty, or when `idle.path` is set to the default `idle` path.
This commit is contained in:
parent
b55581dfe3
commit
7fdf16eab9
13 changed files with 61 additions and 139 deletions
|
@ -1,14 +1,7 @@
|
||||||
set -euxo pipefail
|
set -euxo pipefail
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
case $TARGET in
|
.
|
||||||
thumbv*-none-eabi*)
|
|
||||||
cargo install --list | grep 'xargo v0.3.8' || \
|
|
||||||
cargo install xargo --vers 0.3.8
|
|
||||||
rustup component list | grep 'rust-src.*installed' || \
|
|
||||||
rustup component add rust-src
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main
|
main
|
||||||
|
|
|
@ -9,13 +9,13 @@ main() {
|
||||||
|
|
||||||
case $TARGET in
|
case $TARGET in
|
||||||
thumbv7em-none-eabi*)
|
thumbv7em-none-eabi*)
|
||||||
xargo check --target $TARGET --features cm7-r0p1
|
cargo check --target $TARGET --features cm7-r0p1
|
||||||
xargo check --target $TARGET --features cm7-r0p1 --examples
|
cargo check --target $TARGET --features cm7-r0p1 --examples
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
xargo check --target $TARGET
|
cargo check --target $TARGET
|
||||||
xargo check --target $TARGET --examples
|
cargo check --target $TARGET --examples
|
||||||
}
|
}
|
||||||
|
|
||||||
main
|
main
|
||||||
|
|
|
@ -10,10 +10,11 @@ repository = "https://github.com/japaric/cortex-m-rtfm"
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
error-chain = "0.10.0"
|
failure = "0.1.1"
|
||||||
quote = "0.3.15"
|
proc-macro2 = "0.3.6"
|
||||||
rtfm-syntax = "0.2.1"
|
quote = "0.5.1"
|
||||||
syn = "0.11.11"
|
rtfm-syntax = { git = "https://github.com/japaric/rtfm-syntax", branch = "syn-up" }
|
||||||
|
syn = "0.13.1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
@ -40,7 +40,7 @@ pub fn app(app: &App) -> Ownerships {
|
||||||
}
|
}
|
||||||
|
|
||||||
for task in app.tasks.values() {
|
for task in app.tasks.values() {
|
||||||
for resource in &task.resources {
|
for resource in task.resources.iter() {
|
||||||
if let Some(ownership) = ownerships.get_mut(resource) {
|
if let Some(ownership) = ownerships.get_mut(resource) {
|
||||||
match *ownership {
|
match *ownership {
|
||||||
Ownership::Owned { priority } => {
|
Ownership::Owned { priority } => {
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use syn::{Ident, Path};
|
use syn::{Ident, Path};
|
||||||
use syntax::check::{self, Idle, Init};
|
use syntax::check::{self, Idents, Idle, Init, Statics};
|
||||||
use syntax::{self, Resources, Statics};
|
use syntax::{self, Result};
|
||||||
|
|
||||||
use syntax::error::*;
|
|
||||||
|
|
||||||
pub struct App {
|
pub struct App {
|
||||||
pub device: Path,
|
pub device: Path,
|
||||||
|
@ -51,7 +49,7 @@ pub struct Task {
|
||||||
pub kind: Kind,
|
pub kind: Kind,
|
||||||
pub path: Path,
|
pub path: Path,
|
||||||
pub priority: u8,
|
pub priority: u8,
|
||||||
pub resources: Resources,
|
pub resources: Idents,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn app(app: check::App) -> Result<App> {
|
pub fn app(app: check::App) -> Result<App> {
|
||||||
|
@ -63,80 +61,16 @@ pub fn app(app: check::App) -> Result<App> {
|
||||||
tasks: app.tasks
|
tasks: app.tasks
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|(k, v)| {
|
.map(|(k, v)| {
|
||||||
let v =
|
let v = ::check::task(k.as_ref(), v)?;
|
||||||
::check::task(k.as_ref(), v).chain_err(|| format!("checking task `{}`", k))?;
|
|
||||||
|
|
||||||
Ok((k, v))
|
Ok((k, v))
|
||||||
})
|
})
|
||||||
.collect::<Result<_>>()?,
|
.collect::<Result<_>>()?,
|
||||||
};
|
};
|
||||||
|
|
||||||
::check::resources(&app).chain_err(|| "checking `resources`")?;
|
|
||||||
|
|
||||||
Ok(app)
|
Ok(app)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn resources(app: &App) -> Result<()> {
|
|
||||||
for name in &app.init.resources {
|
|
||||||
if let Some(resource) = app.resources.get(name) {
|
|
||||||
ensure!(
|
|
||||||
resource.expr.is_some(),
|
|
||||||
"resource `{}`, allocated to `init`, must have an initial value",
|
|
||||||
name
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
bail!(
|
|
||||||
"resource `{}`, allocated to `init`, must be a data resource",
|
|
||||||
name
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
ensure!(
|
|
||||||
!app.idle.resources.contains(name),
|
|
||||||
"resources assigned to `init` can't be shared with `idle`"
|
|
||||||
);
|
|
||||||
|
|
||||||
ensure!(
|
|
||||||
app.tasks
|
|
||||||
.iter()
|
|
||||||
.all(|(_, task)| !task.resources.contains(name)),
|
|
||||||
"resources assigned to `init` can't be shared with tasks"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
for resource in app.resources.keys() {
|
|
||||||
if app.init.resources.contains(resource) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if app.idle.resources.contains(resource) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if app.tasks
|
|
||||||
.values()
|
|
||||||
.any(|task| task.resources.contains(resource))
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
bail!("resource `{}` is unused", resource);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (name, task) in &app.tasks {
|
|
||||||
for resource in &task.resources {
|
|
||||||
ensure!(
|
|
||||||
app.resources.contains_key(&resource),
|
|
||||||
"task {} contains an undeclared resource with name {}",
|
|
||||||
name,
|
|
||||||
resource
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn task(name: &str, task: syntax::check::Task) -> Result<Task> {
|
fn task(name: &str, task: syntax::check::Task) -> Result<Task> {
|
||||||
let kind = match Exception::from(name) {
|
let kind = match Exception::from(name) {
|
||||||
Some(e) => {
|
Some(e) => {
|
||||||
|
@ -147,23 +81,14 @@ fn task(name: &str, task: syntax::check::Task) -> Result<Task> {
|
||||||
|
|
||||||
Kind::Exception(e)
|
Kind::Exception(e)
|
||||||
}
|
}
|
||||||
None => {
|
None => Kind::Interrupt {
|
||||||
if task.enabled == Some(true) {
|
enabled: task.enabled.unwrap_or(true),
|
||||||
bail!(
|
},
|
||||||
"`enabled: true` is the default value; this line can be \
|
|
||||||
omitted"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Kind::Interrupt {
|
|
||||||
enabled: task.enabled.unwrap_or(true),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(Task {
|
Ok(Task {
|
||||||
kind,
|
kind,
|
||||||
path: task.path.ok_or("`path` field is missing")?,
|
path: task.path,
|
||||||
priority: task.priority.unwrap_or(1),
|
priority: task.priority.unwrap_or(1),
|
||||||
resources: task.resources,
|
resources: task.resources,
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
//! Procedural macros of the `cortex-m-rtfm` crate
|
//! Procedural macros of the `cortex-m-rtfm` crate
|
||||||
#![deny(warnings)]
|
// #![deny(warnings)]
|
||||||
#![feature(proc_macro)]
|
#![feature(proc_macro)]
|
||||||
#![recursion_limit = "128"]
|
#![recursion_limit = "128"]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate error_chain;
|
extern crate failure;
|
||||||
extern crate proc_macro;
|
extern crate proc_macro;
|
||||||
|
extern crate proc_macro2;
|
||||||
|
extern crate syn;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate quote;
|
extern crate quote;
|
||||||
extern crate rtfm_syntax as syntax;
|
extern crate rtfm_syntax as syntax;
|
||||||
extern crate syn;
|
|
||||||
|
|
||||||
use proc_macro::TokenStream;
|
use proc_macro::TokenStream;
|
||||||
use syntax::App;
|
use syntax::{App, Result};
|
||||||
use syntax::error::*;
|
|
||||||
|
|
||||||
mod analyze;
|
mod analyze;
|
||||||
mod check;
|
mod check;
|
||||||
|
@ -170,22 +170,17 @@ mod trans;
|
||||||
#[proc_macro]
|
#[proc_macro]
|
||||||
pub fn app(ts: TokenStream) -> TokenStream {
|
pub fn app(ts: TokenStream) -> TokenStream {
|
||||||
match run(ts) {
|
match run(ts) {
|
||||||
Err(e) => panic!("{}", error_chain::ChainedError::display(&e)),
|
Err(e) => panic!("error: {}", e),
|
||||||
Ok(ts) => ts,
|
Ok(ts) => ts,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn run(ts: TokenStream) -> Result<TokenStream> {
|
fn run(ts: TokenStream) -> Result<TokenStream> {
|
||||||
let input = format!("{}", ts);
|
let app = App::parse(ts)?.check()?;
|
||||||
|
|
||||||
let app = App::parse(&input).chain_err(|| "parsing")?;
|
|
||||||
let app = syntax::check::app(app).chain_err(|| "checking the AST")?;
|
|
||||||
let app = check::app(app)?;
|
let app = check::app(app)?;
|
||||||
|
|
||||||
let ownerships = analyze::app(&app);
|
let ownerships = analyze::app(&app);
|
||||||
let tokens = trans::app(&app, &ownerships);
|
let tokens = trans::app(&app, &ownerships);
|
||||||
|
|
||||||
Ok(format!("{}", tokens)
|
Ok(tokens.into())
|
||||||
.parse()
|
|
||||||
.map_err(|_| "BUG: error parsing the generated code")?)
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
use quote::{Ident, Tokens};
|
use proc_macro2::Span;
|
||||||
use syn::{Lit, StrStyle};
|
use quote::Tokens;
|
||||||
|
use syn::{Ident, LitStr};
|
||||||
|
|
||||||
use analyze::Ownerships;
|
use analyze::Ownerships;
|
||||||
use check::{App, Kind};
|
use check::{App, Kind};
|
||||||
|
@ -10,12 +11,12 @@ fn krate() -> Ident {
|
||||||
|
|
||||||
pub fn app(app: &App, ownerships: &Ownerships) -> Tokens {
|
pub fn app(app: &App, ownerships: &Ownerships) -> Tokens {
|
||||||
let mut root = vec![];
|
let mut root = vec![];
|
||||||
let mut main = vec![];
|
let mut main = vec![quote!(#![allow(path_statements)])];
|
||||||
|
|
||||||
|
::trans::tasks(app, ownerships, &mut root, &mut main);
|
||||||
::trans::init(app, &mut main, &mut root);
|
::trans::init(app, &mut main, &mut root);
|
||||||
::trans::idle(app, ownerships, &mut main, &mut root);
|
::trans::idle(app, ownerships, &mut main, &mut root);
|
||||||
::trans::resources(app, ownerships, &mut root);
|
::trans::resources(app, ownerships, &mut root);
|
||||||
::trans::tasks(app, ownerships, &mut root);
|
|
||||||
|
|
||||||
root.push(quote! {
|
root.push(quote! {
|
||||||
#[allow(unsafe_code)]
|
#[allow(unsafe_code)]
|
||||||
|
@ -53,7 +54,7 @@ fn idle(app: &App, ownerships: &Ownerships, main: &mut Vec<Tokens>, root: &mut V
|
||||||
let super_ = if needs_reexport {
|
let super_ = if needs_reexport {
|
||||||
None
|
None
|
||||||
} else {
|
} else {
|
||||||
Some(Ident::new("super"))
|
Some(Ident::from("super"))
|
||||||
};
|
};
|
||||||
let mut rexprs = vec![];
|
let mut rexprs = vec![];
|
||||||
let mut rfields = vec![];
|
let mut rfields = vec![];
|
||||||
|
@ -69,7 +70,7 @@ fn idle(app: &App, ownerships: &Ownerships, main: &mut Vec<Tokens>, root: &mut V
|
||||||
pub #name: &'static mut #ty,
|
pub #name: &'static mut #ty,
|
||||||
});
|
});
|
||||||
|
|
||||||
let _name = Ident::new(format!("_{}", name.as_ref()));
|
let _name = Ident::from(format!("_{}", name.as_ref()));
|
||||||
rexprs.push(if resource.expr.is_some() {
|
rexprs.push(if resource.expr.is_some() {
|
||||||
quote! {
|
quote! {
|
||||||
#name: &mut #super_::#_name,
|
#name: &mut #super_::#_name,
|
||||||
|
@ -132,10 +133,10 @@ fn idle(app: &App, ownerships: &Ownerships, main: &mut Vec<Tokens>, root: &mut V
|
||||||
|
|
||||||
// owned resource
|
// owned resource
|
||||||
if ceiling == 0 {
|
if ceiling == 0 {
|
||||||
continue
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let _name = Ident::new(format!("_{}", name.as_ref()));
|
let _name = Ident::from(format!("_{}", name.as_ref()));
|
||||||
let resource = app.resources
|
let resource = app.resources
|
||||||
.get(name)
|
.get(name)
|
||||||
.expect(&format!("BUG: resource {} has no definition", name));
|
.expect(&format!("BUG: resource {} has no definition", name));
|
||||||
|
@ -262,7 +263,7 @@ fn init(app: &App, main: &mut Vec<Tokens>, root: &mut Vec<Tokens>) {
|
||||||
&mut #name
|
&mut #name
|
||||||
},));
|
},));
|
||||||
} else {
|
} else {
|
||||||
let _name = Ident::new(format!("_{}", name.as_ref()));
|
let _name = Ident::from(format!("_{}", name.as_ref()));
|
||||||
lifetime = Some(quote!('a));
|
lifetime = Some(quote!('a));
|
||||||
|
|
||||||
fields.push(quote! {
|
fields.push(quote! {
|
||||||
|
@ -309,7 +310,7 @@ fn init(app: &App, main: &mut Vec<Tokens>, root: &mut Vec<Tokens>) {
|
||||||
let mut fields = vec![];
|
let mut fields = vec![];
|
||||||
|
|
||||||
for (name, resource) in late_resources {
|
for (name, resource) in late_resources {
|
||||||
let _name = Ident::new(format!("_{}", name.as_ref()));
|
let _name = Ident::from(format!("_{}", name.as_ref()));
|
||||||
|
|
||||||
let ty = &resource.ty;
|
let ty = &resource.ty;
|
||||||
|
|
||||||
|
@ -373,6 +374,8 @@ fn init(app: &App, main: &mut Vec<Tokens>, root: &mut Vec<Tokens>) {
|
||||||
// Interrupt. These are enabled / disabled through the NVIC
|
// Interrupt. These are enabled / disabled through the NVIC
|
||||||
if interrupts.is_empty() {
|
if interrupts.is_empty() {
|
||||||
interrupts.push(quote! {
|
interrupts.push(quote! {
|
||||||
|
use #device::Interrupt;
|
||||||
|
|
||||||
let mut nvic: #device::NVIC = core::mem::transmute(());
|
let mut nvic: #device::NVIC = core::mem::transmute(());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -381,16 +384,16 @@ fn init(app: &App, main: &mut Vec<Tokens>, root: &mut Vec<Tokens>) {
|
||||||
interrupts.push(quote! {
|
interrupts.push(quote! {
|
||||||
let prio_bits = #device::NVIC_PRIO_BITS;
|
let prio_bits = #device::NVIC_PRIO_BITS;
|
||||||
let hw = ((1 << prio_bits) - #priority) << (8 - prio_bits);
|
let hw = ((1 << prio_bits) - #priority) << (8 - prio_bits);
|
||||||
nvic.set_priority(#device::Interrupt::#name, hw);
|
nvic.set_priority(Interrupt::#name, hw);
|
||||||
});
|
});
|
||||||
|
|
||||||
if enabled {
|
if enabled {
|
||||||
interrupts.push(quote! {
|
interrupts.push(quote! {
|
||||||
nvic.enable(#device::Interrupt::#name);
|
nvic.enable(Interrupt::#name);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
interrupts.push(quote! {
|
interrupts.push(quote! {
|
||||||
nvic.disable(#device::Interrupt::#name);
|
nvic.disable(Interrupt::#name);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -416,7 +419,7 @@ fn resources(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) {
|
||||||
let krate = krate();
|
let krate = krate();
|
||||||
|
|
||||||
for name in ownerships.keys() {
|
for name in ownerships.keys() {
|
||||||
let _name = Ident::new(format!("_{}", name.as_ref()));
|
let _name = Ident::from(format!("_{}", name.as_ref()));
|
||||||
|
|
||||||
// Declare the static that holds the resource
|
// Declare the static that holds the resource
|
||||||
let resource = app.resources
|
let resource = app.resources
|
||||||
|
@ -439,7 +442,7 @@ fn resources(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn tasks(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) {
|
fn tasks(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>, main: &mut Vec<Tokens>) {
|
||||||
let device = &app.device;
|
let device = &app.device;
|
||||||
let krate = krate();
|
let krate = krate();
|
||||||
|
|
||||||
|
@ -453,7 +456,7 @@ fn tasks(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) {
|
||||||
if has_resources {
|
if has_resources {
|
||||||
for rname in &task.resources {
|
for rname in &task.resources {
|
||||||
let ceiling = ownerships[rname].ceiling();
|
let ceiling = ownerships[rname].ceiling();
|
||||||
let _rname = Ident::new(format!("_{}", rname.as_ref()));
|
let _rname = Ident::from(format!("_{}", rname.as_ref()));
|
||||||
let resource = app.resources
|
let resource = app.resources
|
||||||
.get(rname)
|
.get(rname)
|
||||||
.expect(&format!("BUG: resource {} has no definition", rname));
|
.expect(&format!("BUG: resource {} has no definition", rname));
|
||||||
|
@ -591,8 +594,8 @@ fn tasks(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) {
|
||||||
}
|
}
|
||||||
|
|
||||||
let path = &task.path;
|
let path = &task.path;
|
||||||
let _tname = Ident::new(format!("_{}", tname));
|
let _tname = Ident::from(format!("_{}", tname));
|
||||||
let export_name = Lit::Str(tname.as_ref().to_owned(), StrStyle::Cooked);
|
let export_name = LitStr::new(tname.as_ref(), Span::call_site());
|
||||||
root.push(quote! {
|
root.push(quote! {
|
||||||
#[allow(non_snake_case)]
|
#[allow(non_snake_case)]
|
||||||
#[allow(unsafe_code)]
|
#[allow(unsafe_code)]
|
||||||
|
@ -608,11 +611,12 @@ fn tasks(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) {
|
||||||
#[allow(non_snake_case)]
|
#[allow(non_snake_case)]
|
||||||
#[allow(unsafe_code)]
|
#[allow(unsafe_code)]
|
||||||
mod #tname {
|
mod #tname {
|
||||||
|
#[allow(unused_imports)]
|
||||||
use core::marker::PhantomData;
|
use core::marker::PhantomData;
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
#[deny(const_err)]
|
#[deny(const_err)]
|
||||||
const CHECK_PRIORITY: (u8, u8) = (
|
pub const CHECK_PRIORITY: (u8, u8) = (
|
||||||
#priority - 1,
|
#priority - 1,
|
||||||
(1 << ::#device::NVIC_PRIO_BITS) - #priority,
|
(1 << ::#device::NVIC_PRIO_BITS) - #priority,
|
||||||
);
|
);
|
||||||
|
@ -620,5 +624,9 @@ fn tasks(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) {
|
||||||
#(#items)*
|
#(#items)*
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// after miri landed (?) rustc won't analyze `const` items unless they are used so we force
|
||||||
|
// evaluation with this path statement
|
||||||
|
main.push(quote!(#tname::CHECK_PRIORITY;));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,8 +19,8 @@ app! { //~ proc macro panicked
|
||||||
},
|
},
|
||||||
|
|
||||||
idle: {
|
idle: {
|
||||||
// ERROR resources assigned to `init` can't be shared with `idle`
|
|
||||||
resources: [BUFFER],
|
resources: [BUFFER],
|
||||||
|
//~^ error: this resource is owned by `init` and can't be shared
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,8 @@ app! { //~ proc macro panicked
|
||||||
tasks: {
|
tasks: {
|
||||||
SYS_TICK: {
|
SYS_TICK: {
|
||||||
path: sys_tick,
|
path: sys_tick,
|
||||||
// ERROR resources assigned to `init` can't be shared with tasks
|
|
||||||
resources: [BUFFER],
|
resources: [BUFFER],
|
||||||
|
//~^ error: this resource is owned by `init` and can't be shared
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,12 +8,10 @@ extern crate stm32f103xx;
|
||||||
|
|
||||||
use rtfm::app;
|
use rtfm::app;
|
||||||
|
|
||||||
app! {
|
app! { //~ error no variant named `EXTI33` found for type
|
||||||
//~^ error no variant named `EXTI33` found for type
|
|
||||||
device: stm32f103xx,
|
device: stm32f103xx,
|
||||||
|
|
||||||
tasks: {
|
tasks: {
|
||||||
// ERROR this interrupt doesn't exist
|
|
||||||
EXTI33: {
|
EXTI33: {
|
||||||
path: exti33,
|
path: exti33,
|
||||||
},
|
},
|
||||||
|
|
|
@ -9,6 +9,7 @@ extern crate stm32f103xx;
|
||||||
use rtfm::app;
|
use rtfm::app;
|
||||||
|
|
||||||
app! { //~ error attempt to subtract with overflow
|
app! { //~ error attempt to subtract with overflow
|
||||||
|
//~^ error constant evaluation error
|
||||||
device: stm32f103xx,
|
device: stm32f103xx,
|
||||||
|
|
||||||
tasks: {
|
tasks: {
|
||||||
|
|
|
@ -9,6 +9,7 @@ extern crate stm32f103xx;
|
||||||
use rtfm::app;
|
use rtfm::app;
|
||||||
|
|
||||||
app! { //~ error attempt to subtract with overflow
|
app! { //~ error attempt to subtract with overflow
|
||||||
|
//~^ error constant evaluation error
|
||||||
device: stm32f103xx,
|
device: stm32f103xx,
|
||||||
|
|
||||||
tasks: {
|
tasks: {
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
extern crate cortex_m_rtfm as rtfm;
|
extern crate cortex_m_rtfm as rtfm;
|
||||||
extern crate stm32f103xx;
|
extern crate stm32f103xx;
|
||||||
|
|
||||||
use rtfm::{app, Resource, Threshold};
|
use rtfm::{app, Threshold};
|
||||||
|
|
||||||
app! {
|
app! {
|
||||||
device: stm32f103xx,
|
device: stm32f103xx,
|
||||||
|
@ -43,7 +43,7 @@ fn is_sync<T>(_: &T) where T: Sync {}
|
||||||
fn exti0(_t: &mut Threshold, r: EXTI0::Resources) {
|
fn exti0(_t: &mut Threshold, r: EXTI0::Resources) {
|
||||||
// ERROR resource proxies can't be shared between tasks
|
// ERROR resource proxies can't be shared between tasks
|
||||||
is_sync(&r.SHARED);
|
is_sync(&r.SHARED);
|
||||||
//~^ error the trait bound `*const (): core::marker::Sync` is not satisfied
|
//~^ error `*const ()` cannot be shared between threads safely
|
||||||
|
|
||||||
// ERROR resource proxies are not `Send`able across tasks
|
// ERROR resource proxies are not `Send`able across tasks
|
||||||
is_send(&r.SHARED);
|
is_send(&r.SHARED);
|
||||||
|
|
Loading…
Reference in a new issue