diff options
| author | maor1993 <[email protected]> | 2025-08-29 16:35:21 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-29 16:35:21 +0300 |
| commit | acc3c4b98c5238950640409d6a8ab6029edda3c9 (patch) | |
| tree | 9153c39153c3dbd2af49a0ff6fce46f7d5d8d3e2 /docs/examples | |
| parent | 1db247f5a493f178751ba083483009bfa31c7899 (diff) | |
| parent | f86cf87f2f20f723e2ba2fe7d83908a2b3bac2d1 (diff) | |
Merge branch 'main' into main
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/basic/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/basic/src/main.rs b/docs/examples/basic/src/main.rs index 4412712c8..6e274bacb 100644 --- a/docs/examples/basic/src/main.rs +++ b/docs/examples/basic/src/main.rs | |||
| @@ -22,5 +22,5 @@ async fn main(spawner: Spawner) { | |||
| 22 | let p = embassy_nrf::init(Default::default()); | 22 | let p = embassy_nrf::init(Default::default()); |
| 23 | 23 | ||
| 24 | let led = Output::new(p.P0_13, Level::Low, OutputDrive::Standard); | 24 | let led = Output::new(p.P0_13, Level::Low, OutputDrive::Standard); |
| 25 | unwrap!(spawner.spawn(blinker(led, Duration::from_millis(300)))); | 25 | spawner.spawn(unwrap!(blinker(led, Duration::from_millis(300)))); |
| 26 | } | 26 | } |
