From a66540efa014b3716d252612bfc7f8f17ed765c4 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Sun, 23 Apr 2023 15:33:56 +0200 Subject: Disable the playground on all of these --- book/en/src/internals/non-reentrancy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'book/en/src/internals/non-reentrancy.md') diff --git a/book/en/src/internals/non-reentrancy.md b/book/en/src/internals/non-reentrancy.md index 17b34d0..04785c3 100644 --- a/book/en/src/internals/non-reentrancy.md +++ b/book/en/src/internals/non-reentrancy.md @@ -10,7 +10,7 @@ To reenter a task handler in software its underlying interrupt handler must be invoked using FFI (see example below). FFI requires `unsafe` code so end users are discouraged from directly invoking an interrupt handler. -``` rust +``` rust,noplayground #[rtic::app(device = ..)] mod app { #[init] @@ -48,7 +48,7 @@ call from user code. The above example expands into: -``` rust +``` rust,noplayground fn foo(c: foo::Context) { // .. user code .. } -- cgit v1.2.3