::acquire()
}
```
---
## Log Level
You can control the log level at compile time with an environment variable:
```text
DEFMT_LOG=info cargo build
```
Note:
Windows users will use different syntax for cmd.exe vs Powershell.
---
## Host tools
* Knurling's `probe-run` was the first
* The `probe-rs` CLI now has support (recommended)
* Or use `defmt-print`
---
## Using probe-rs
$ probe-rs run --chip nRF52840_xxAA target/thumbv7em-none-eabihf/debug/radio-puzzle-solution
Erasing ✔ [00:00:00] [#########################] 16.00 KiB/16.00 KiB @ 35.52 KiB/s (eta 0s )
Programming ✔ [00:00:00] [#########################] 16.00 KiB/16.00 KiB @ 49.90 KiB/s (eta 0s )
Finished in 0.79s
0 DEBUG Initializing the board
└─ dk::init @ /Users/jp/ferrous-systems/rust-exercises/nrf52-code/boards/dk/src/lib.rs:208
1 DEBUG Clocks configured
└─ dk::init @ /Users/jp/ferrous-systems/rust-exercises/nrf52-code/boards/dk/src/lib.rs:219
---
## Customise the format
$ probe-rs run --chip nRF52840_xxAA ... --log-format oneline
Erasing ✔ [00:00:00] [#########################] 16.00 KiB/16.00 KiB @ 35.52 KiB/s (eta 0s )
Programming ✔ [00:00:00] [#########################] 16.00 KiB/16.00 KiB @ 49.90 KiB/s (eta 0s )
Finished in 0.79s
00:00:00.000000 [DEBUG] Initializing the board (dk dk/src/lib.rs:317)
00:00:00.000000 [DEBUG] Clocks configured (dk dk/src/lib.rs:335)
00:00:00.000000 [DEBUG] RTC started (dk dk/src/lib.rs:354)
---
## Set it as your runner
```toml
[target.thumbv7em-none-eabihf]
runner = "probe-rs run --chip nRF52840_xxAA --log-format oneline"
```
$ cargo run
Finished dev [optimized + debuginfo] target(s) in 0.03s
Running `probe-rs run --chip nRF52840_xxAA --log-format oneline target/thumbv7em-none-eabihf/debug/radio-puzzle-solution`
Erasing ✔ [00:00:00] [#########################] 16.00 KiB/16.00 KiB @ 35.52 KiB/s (eta 0s )
Programming ✔ [00:00:00] [#########################] 16.00 KiB/16.00 KiB @ 49.90 KiB/s (eta 0s )
Finished in 0.79s
00:00:00.000000 [DEBUG] Initializing the board (dk dk/src/lib.rs:317)
00:00:00.000000 [DEBUG] Clocks configured (dk dk/src/lib.rs:335)
00:00:00.000000 [DEBUG] RTC started (dk dk/src/lib.rs:354)
---
## More info
There's a book!
---
## Re-entrancy
`defmt::info!` (etc) can be called anywhere, even from an interrupt.
How do you make that safe?
---
## Critical Sections
* defmt-rtt uses the `critical-section` crate
* More on this elsewhere