aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/flash.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-29 17:23:48 +0100
committerDario Nieuwenhuis <[email protected]>2023-11-29 17:26:33 +0100
commitc6989dfbca51787146f50270c671af9db434f577 (patch)
tree5974a8ec41c108d5208e4f68027b918d424a2046 /embassy-rp/src/flash.rs
parent384bad7bfaa1f2415baf2cd3b69ebf36dc0a02d7 (diff)
Remove nightly and unstable-traits features in preparation for 1.75.
Diffstat (limited to 'embassy-rp/src/flash.rs')
-rw-r--r--embassy-rp/src/flash.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/embassy-rp/src/flash.rs b/embassy-rp/src/flash.rs
index 8fb5542f1..1b20561da 100644
--- a/embassy-rp/src/flash.rs
+++ b/embassy-rp/src/flash.rs
@@ -352,7 +352,6 @@ impl<'d, T: Instance, M: Mode, const FLASH_SIZE: usize> NorFlash for Flash<'d, T
352 } 352 }
353} 353}
354 354
355#[cfg(feature = "nightly")]
356impl<'d, T: Instance, const FLASH_SIZE: usize> embedded_storage_async::nor_flash::ReadNorFlash 355impl<'d, T: Instance, const FLASH_SIZE: usize> embedded_storage_async::nor_flash::ReadNorFlash
357 for Flash<'d, T, Async, FLASH_SIZE> 356 for Flash<'d, T, Async, FLASH_SIZE>
358{ 357{
@@ -367,7 +366,6 @@ impl<'d, T: Instance, const FLASH_SIZE: usize> embedded_storage_async::nor_flash
367 } 366 }
368} 367}
369 368
370#[cfg(feature = "nightly")]
371impl<'d, T: Instance, const FLASH_SIZE: usize> embedded_storage_async::nor_flash::NorFlash 369impl<'d, T: Instance, const FLASH_SIZE: usize> embedded_storage_async::nor_flash::NorFlash
372 for Flash<'d, T, Async, FLASH_SIZE> 370 for Flash<'d, T, Async, FLASH_SIZE>
373{ 371{