Adding a limit that async HALs can read and have as max prio

This commit is contained in:
Emil Fresk 2023-03-29 20:43:27 +02:00
parent 3a0e2ac924
commit 323b847bf6
4 changed files with 32 additions and 0 deletions

View file

@ -42,3 +42,7 @@ pub fn interrupt_entry(_app: &App, _analysis: &CodegenAnalysis) -> Vec<TokenStre
pub fn interrupt_exit(_app: &App, _analysis: &CodegenAnalysis) -> Vec<TokenStream2> {
vec![]
}
pub fn async_prio_limit(app: &App, _analysis: &CodegenAnalysis) -> Vec<TokenStream2> {
vec![]
}