Skip to content

Commit

Permalink
Remove: example failing the CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
IniterWorker committed Sep 28, 2024
1 parent 0ec2a30 commit 7f9b847
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,6 @@ where
/// This method returns an error if there are communication issues while sending the data
/// to the display.
///
/// # Example
///
/// ```rust(ignore)
/// // Clear the display using a stack allocation of 64 `u16` values per iteration
/// display.clear_fit_custom_stack::<64>()?;
/// ```
///
/// # Panics
///
/// This method will stackoverflow if the value of `CLEAR_SIZE_STACK` exceeds the remaining available stack space.
Expand Down Expand Up @@ -241,13 +234,6 @@ where
/// # Notes
///
/// The default stack allocation size is 64 bytes (32 `u16` values).
///
/// # Example
///
/// ```rust(ignore)
/// // Clear the display using the default stack allocation of 64 bytes
/// display.clear_fit()?;
/// ```
pub fn clear_fit(&mut self) -> Result<(), DisplayError> {
self.clear_fit_custom_stack::<32>()
}
Expand Down

0 comments on commit 7f9b847

Please sign in to comment.