Browse Source

Addition to previous commit (examples and forgotten save)

embedded-hal-1.0
Chris 7 years ago
parent
commit
f131636b01
  1. 2
      examples/embedded_linux_epd1in54/src/main.rs
  2. 2
      examples/embedded_linux_epd4in2/src/main.rs
  3. 2
      examples/stm32f3discovery/src/main.rs
  4. 6
      src/traits.rs

2
examples/embedded_linux_epd1in54/src/main.rs

@ -9,7 +9,7 @@ use eink_waveshare_rs::{
EPD1in54, EPD1in54,
//drawing::{Graphics}, //drawing::{Graphics},
color::Color, color::Color,
WaveshareInterface, WaveshareDisplay,
}; };
use lin_hal::spidev::{self, SpidevOptions}; use lin_hal::spidev::{self, SpidevOptions};

2
examples/embedded_linux_epd4in2/src/main.rs

@ -9,7 +9,7 @@ use eink_waveshare_rs::{
EPD4in2, EPD4in2,
drawing::{Graphics}, drawing::{Graphics},
color::Color, color::Color,
WaveshareInterface, WaveshareDisplay,
}; };
use lin_hal::spidev::{self, SpidevOptions}; use lin_hal::spidev::{self, SpidevOptions};

2
examples/stm32f3discovery/src/main.rs

@ -30,7 +30,7 @@ use eink_waveshare_rs::{
SPI_MODE, SPI_MODE,
//drawing::{Graphics}, //drawing::{Graphics},
color::Color, color::Color,
WaveshareInterface, WaveshareDisplay,
}; };

6
src/traits.rs

@ -6,8 +6,8 @@ use hal::{
use color::Color; use color::Color;
/// Interface for the physical connection between display and the controlling device
pub(crate) mod connection_interface;
/// All commands need to have this trait which gives the address of the command /// All commands need to have this trait which gives the address of the command
@ -48,7 +48,7 @@ where
} }
pub trait WaveshareInterface<SPI, CS, BUSY, DC, RST> pub trait WaveshareDisplay<SPI, CS, BUSY, DC, RST>
where where
SPI: Write<u8>, SPI: Write<u8>,
CS: OutputPin, CS: OutputPin,

Loading…
Cancel
Save