Ignore compiling rust code

This commit is contained in:
Ulf Lilleengen 2022-06-15 10:44:15 +02:00
parent 72eb16b46d
commit eb23733767

View File

@ -42,7 +42,7 @@ The <a href="https://github.com/embassy-rs/nrf-softdevice">nrf-softdevice</a> cr
## Sneak peek ## Sneak peek
```rust ```rust,ignore
use defmt::info; use defmt::info;
use embassy::executor::Spawner; use embassy::executor::Spawner;
use embassy::time::{Duration, Timer}; use embassy::time::{Duration, Timer};
@ -93,20 +93,21 @@ Examples are found in the `examples/` folder seperated by the chip manufacturer
### Running examples ### Running examples
- Setup git submodules (needed for STM32 examples) - Setup git submodules (needed for STM32 examples)
```
```bash
git submodule init git submodule init
git submodule update git submodule update
``` ```
- Install `probe-run` with defmt support. - Install `probe-run` with defmt support.
``` ```bash
cargo install probe-run cargo install probe-run
``` ```
- Change directory to the sample's base directory. For example: - Change directory to the sample's base directory. For example:
``` ```bash
cd examples/nrf cd examples/nrf
``` ```
@ -114,7 +115,7 @@ cd examples/nrf
For example: For example:
``` ```bash
cargo run --bin blinky cargo run --bin blinky
``` ```