We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb3088 commit 53fcdd1Copy full SHA for 53fcdd1
examples/embassy-stm32g4/src/bin/spawn_local.rs
@@ -2,15 +2,16 @@
2
#![no_std]
3
4
use core::marker::PhantomData;
5
+use rtic::app;
6
use {defmt_rtt as _, panic_probe as _};
7
pub mod pac {
8
pub use embassy_stm32::pac::Interrupt as interrupt;
9
pub use embassy_stm32::pac::*;
10
}
11
-#[rtic::app(device = pac, dispatchers = [SPI1])]
12
+#[app(device = pac, peripherals = false, dispatchers = [SPI1])]
13
mod app {
- use crate::NotSendNotSync;
14
+ use super::*;
15
16
#[shared]
17
struct Shared {}
0 commit comments