diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-09-04 07:50:13 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-04 07:50:13 +0000 |
| commit | 7506bd8ae0ba335fc058c2138438fab5f20f6dab (patch) | |
| tree | fe65b335b19171370bd6be0bd5cd6b776a1d6110 /homogeneous/examples/x-spawn.rs | |
| parent | c5e6d1fa49e3596227a8ee8fe89e2e4f66db3169 (diff) | |
| parent | ad2b80907899cc335edcebfc77ae4b4b51272b87 (diff) | |
Merge #355
355: Multi-core removal r=korken89 a=AfoHT
Dependent on https://github.com/rtic-rs/rtic-syntax/pull/27
With the same reasoning as ^^
For now the testing is done against my rtic-syntax/multiremove-branch, but before we merge it should corrected.
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
Diffstat (limited to 'homogeneous/examples/x-spawn.rs')
| -rw-r--r-- | homogeneous/examples/x-spawn.rs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/homogeneous/examples/x-spawn.rs b/homogeneous/examples/x-spawn.rs deleted file mode 100644 index 45bc900..0000000 --- a/homogeneous/examples/x-spawn.rs +++ /dev/null @@ -1,20 +0,0 @@ -#![no_main] -#![no_std] - -use panic_halt as _; - -#[rtic::app(cores = 2, device = homogeneous)] -const APP: () = { - #[init(core = 0, spawn = [foo])] - fn init(c: init::Context) { - c.spawn.foo().ok(); - } - - #[task(core = 1)] - fn foo(_: foo::Context) {} - - extern "C" { - #[core = 1] - fn I0(); - } -}; |
