diff --git a/src/digital.rs b/src/digital.rs index df07189ee..7cabd2815 100644 --- a/src/digital.rs +++ b/src/digital.rs @@ -1,8 +1,4 @@ //! Digital I/O -//! -//! In some cases it's possible to implement these blocking traits on top of one of the core HAL -//! traits. To save boilerplate when that's the case a `Default` marker trait may be provided. -//! Implementing that marker trait will opt in your type into a blanket implementation. use core::{convert::From, ops::Not}; diff --git a/src/i2c.rs b/src/i2c.rs index 6d50192e5..3241481e3 100644 --- a/src/i2c.rs +++ b/src/i2c.rs @@ -16,10 +16,6 @@ //! Since 7-bit addressing is the mode of the majority of I2C devices, //! `SevenBitAddress` has been set as default mode and thus can be omitted if desired. //! -//! In some cases it's possible to implement these blocking traits on top of one of the core HAL -//! traits. To save boilerplate when that's the case a `Default` marker trait may be provided. -//! Implementing that marker trait will opt in your type into a blanket implementation. -//! //! ## Examples //! //! ### `embedded-hal` implementation for an MCU diff --git a/src/serial/blocking.rs b/src/serial/blocking.rs index 4b2900a0f..84bc632be 100644 --- a/src/serial/blocking.rs +++ b/src/serial/blocking.rs @@ -1,8 +1,4 @@ //! Blocking serial API -//! -//! In some cases it's possible to implement these blocking traits on top of one of the core HAL -//! traits. To save boilerplate when that's the case a `Default` marker trait may be provided. -//! Implementing that marker trait will opt in your type into a blanket implementation. /// Write half of a serial interface (blocking variant) pub trait Write { diff --git a/src/spi/blocking.rs b/src/spi/blocking.rs index b98207277..d2d916aae 100644 --- a/src/spi/blocking.rs +++ b/src/spi/blocking.rs @@ -1,8 +1,4 @@ //! Blocking SPI API -//! -//! In some cases it's possible to implement these blocking traits on top of one of the core HAL -//! traits. To save boilerplate when that's the case a `Default` marker trait may be provided. -//! Implementing that marker trait will opt in your type into a blanket implementation. /// Blocking transfer pub trait Transfer {