Skip to content

Commit d22f2af

Browse files
committed
removed(spi)!: Remove spi_future module in favor of async implementations (atsamd-rs#875)
1 parent 976d776 commit d22f2af

File tree

3 files changed

+1
-571
lines changed

3 files changed

+1
-571
lines changed

hal/src/sercom/mod.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@ pub use pad::*;
5151
pub mod i2c;
5252
pub mod spi;
5353

54-
#[deprecated(
55-
since = "0.19.0",
56-
note = "spi_future is deprecated and will be removed in a later version of atsamd_hal. Consider using the `async` APIs available in the `spi` module as a replacement."
57-
)]
58-
pub mod spi_future;
5954
pub mod uart;
6055

6156
#[cfg(feature = "dma")]

hal/src/sercom/spi/impl_ehal/thumbv6m.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
//! non-blocking fashion, but this can be done using
2323
#![cfg_attr(feature = "dma", doc = "[`DMA`](crate::dmac)")]
2424
#![cfg_attr(not(feature = "dma"), doc = "`DMA`")]
25-
//! or using interrupts and the [`spi_future`](crate::sercom::spi_future) module.
25+
//! .
2626
//!
2727
//! # Variations by [`Capability`]
2828
//!

0 commit comments

Comments
 (0)