diff options
| author | William Yager <[email protected]> | 2024-03-03 21:07:08 -0500 |
|---|---|---|
| committer | William Yager <[email protected]> | 2024-03-03 21:07:08 -0500 |
| commit | 0813f42d082c6dd8ec1714c1a1ed18c4f64d9590 (patch) | |
| tree | 135efd3bfa81f80ccc5b2c6a592b1338d6bc2839 /embassy-boot-rp/src | |
| parent | cde6e2b58be4910c73b3738bb3b0e264c8ac6049 (diff) | |
ci
Diffstat (limited to 'embassy-boot-rp/src')
| -rw-r--r-- | embassy-boot-rp/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-boot-rp/src/lib.rs b/embassy-boot-rp/src/lib.rs index d88e6dfc6..d0a393bed 100644 --- a/embassy-boot-rp/src/lib.rs +++ b/embassy-boot-rp/src/lib.rs | |||
| @@ -30,8 +30,8 @@ impl<const BUFFER_SIZE: usize> BootLoader<BUFFER_SIZE> { | |||
| 30 | ) -> Result<Self, BootError> { | 30 | ) -> Result<Self, BootError> { |
| 31 | let mut aligned_buf = AlignedBuffer([0; BUFFER_SIZE]); | 31 | let mut aligned_buf = AlignedBuffer([0; BUFFER_SIZE]); |
| 32 | let mut boot = embassy_boot::BootLoader::new(config); | 32 | let mut boot = embassy_boot::BootLoader::new(config); |
| 33 | let state = boot.prepare_boot(aligned_buf.as_mut())?; | 33 | let _state = boot.prepare_boot(aligned_buf.as_mut())?; |
| 34 | Ok(Self { state }) | 34 | Ok(Self) |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | /// Boots the application. | 37 | /// Boots the application. |
