remove nop from the empty idle loop

remove nop from the empty idle loop
This commit is contained in:
onsdagens 2023-09-28 00:30:01 +02:00 committed by Henrik Tjäder
parent 852d63d9e4
commit b2b39ab6e6
4 changed files with 1 additions and 4 deletions

View file

@ -20,7 +20,6 @@ pub fn codegen(app: &App, analysis: &Analysis) -> TokenStream2 {
quote!(#dispatcher();)
} else {
quote!(loop {
rtic::export::nop()
})
};