cargo fmt

embedded-hal-1.0
Johan Kristell 2019-12-28 09:13:40 +01:00
parent 435cfd9a1c
commit 8f89ade010
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,9 @@ use embedded_hal::{
}; };
use crate::interface::DisplayInterface; use crate::interface::DisplayInterface;
use crate::traits::{InternalWiAdditions, RefreshLUT, WaveshareDisplay, WaveshareThreeColorDisplay}; use crate::traits::{
InternalWiAdditions, RefreshLUT, WaveshareDisplay, WaveshareThreeColorDisplay,
};
//The Lookup Tables for the Display //The Lookup Tables for the Display
mod constants; mod constants;

View File

@ -52,7 +52,6 @@ where
) -> Result<(), SPI::Error>; ) -> Result<(), SPI::Error>;
} }
/// Functions to interact with three color panels /// Functions to interact with three color panels
pub trait WaveshareThreeColorDisplay<SPI, CS, BUSY, DC, RST>: pub trait WaveshareThreeColorDisplay<SPI, CS, BUSY, DC, RST>:
WaveshareDisplay<SPI, CS, BUSY, DC, RST> WaveshareDisplay<SPI, CS, BUSY, DC, RST>