summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@redhat.com>2022-08-25 11:29:51 +0200
committerGitHub <noreply@github.com>2022-08-25 11:29:51 +0200
commit5dabeac5d85d6ebf184b034054e827fca19a89ab (patch)
treeb997268650094434506c4cac6f5bb9383a36ecc5 /README.md
parente6dbc368d2e75d5442f5f52fb8343ed04e7a6c7d (diff)
parente2c16d3f3e31129808ee6781ca88d6e788f4761e (diff)
downloadnrf-softdevice-5dabeac5d85d6ebf184b034054e827fca19a89ab.zip
Merge pull request #135 from embassy-rs/embassy-util-split
Update after embassy-util was split
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 13fd43c..8e64bee 100644
--- a/README.md
+++ b/README.md
@@ -137,7 +137,7 @@ DO NOT disable the softdevice's interrupts. You MUST NOT use the widely-used `co
- Make sure the `critical-section-impl` Cargo feature is enabled for `nrf-softdevice`. This makes `nrf-softdevice` emit a custom critical section implementation that disables only non-softdevice interrupts.
- Use `critical_section::with` instead of `cortex_m::interrupt::free`. This uses the custom critical-section impl.
-- Use `embassy_util::blocking_mutex::CriticalSectionMutex` instead of `cortex_m::interrupt::Mutex`.
+- Use `embassy_sync::blocking_mutex::CriticalSectionMutex` instead of `cortex_m::interrupt::Mutex`.
Make sure you're not using any library that internally uses `cortex_m::interrupt::free` as well.