Merge pull request #192 from embassy-rs/executor-agnostic

Build with executor-agnostic in CI
This commit is contained in:
Dario Nieuwenhuis 2021-05-19 13:02:29 +02:00 committed by GitHub
commit 211fdb6e84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ jobs:
target: thumbv7em-none-eabi
- package: embassy
target: thumbv7em-none-eabi
features: log
features: log,executor-agnostic
- package: embassy
target: thumbv7em-none-eabi
features: defmt

View file

@ -2,7 +2,7 @@ use core::cell::Cell;
use core::mem;
use core::task::Waker;
use cortex_m::interrupt::Mutex;
use crate::util::CriticalSectionMutex as Mutex;
/// Utility struct to register and wake a waker.
#[derive(Debug)]