diff options
| author | Mathias <[email protected]> | 2022-08-23 13:24:52 +0200 |
|---|---|---|
| committer | Mathias <[email protected]> | 2022-08-23 13:24:52 +0200 |
| commit | 36cf719a1899202caeae39a8a6d5443a4acbdcfe (patch) | |
| tree | 4b58c2773f577dd7bb739358e48052841fff1432 /embassy-cortex-m/src/executor.rs | |
| parent | 7e3ce2c90befe19ea30c6a784710f6cebf5a48f2 (diff) | |
| parent | cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b (diff) | |
Merge branch 'master' of https://github.com/embassy-rs/embassy into embassy-rp/dma
Diffstat (limited to 'embassy-cortex-m/src/executor.rs')
| -rw-r--r-- | embassy-cortex-m/src/executor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-cortex-m/src/executor.rs b/embassy-cortex-m/src/executor.rs index 80c452f84..0d1745d8a 100644 --- a/embassy-cortex-m/src/executor.rs +++ b/embassy-cortex-m/src/executor.rs | |||
| @@ -71,7 +71,7 @@ impl<I: Interrupt> InterruptExecutor<I> { | |||
| 71 | /// Executor instance in a place where it'll live forever and grants you mutable | 71 | /// Executor instance in a place where it'll live forever and grants you mutable |
| 72 | /// access. There's a few ways to do this: | 72 | /// access. There's a few ways to do this: |
| 73 | /// | 73 | /// |
| 74 | /// - a [Forever](embassy_util::Forever) (safe) | 74 | /// - a [StaticCell](https://docs.rs/static_cell/latest/static_cell/) (safe) |
| 75 | /// - a `static mut` (unsafe) | 75 | /// - a `static mut` (unsafe) |
| 76 | /// - a local variable in a function you know never returns (like `fn main() -> !`), upgrading its lifetime with `transmute`. (unsafe) | 76 | /// - a local variable in a function you know never returns (like `fn main() -> !`), upgrading its lifetime with `transmute`. (unsafe) |
| 77 | pub fn start(&'static mut self) -> SendSpawner { | 77 | pub fn start(&'static mut self) -> SendSpawner { |
