From eb237337671af5c9be7fc120e5d5235039dc5e5a Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Wed, 15 Jun 2022 10:44:15 +0200 Subject: [PATCH] Ignore compiling rust code --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index eab74bd57..a7a7ccd54 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ The nrf-softdevice cr ## Sneak peek -```rust +```rust,ignore use defmt::info; use embassy::executor::Spawner; use embassy::time::{Duration, Timer}; @@ -93,20 +93,21 @@ Examples are found in the `examples/` folder seperated by the chip manufacturer ### Running examples - Setup git submodules (needed for STM32 examples) -``` + +```bash git submodule init git submodule update ``` - Install `probe-run` with defmt support. -``` +```bash cargo install probe-run ``` - Change directory to the sample's base directory. For example: -``` +```bash cd examples/nrf ``` @@ -114,7 +115,7 @@ cd examples/nrf For example: -``` +```bash cargo run --bin blinky ```