Forgotten files in previous commit

digi-v2-tests
Chris 5 years ago
parent 139096297b
commit 1baf35c1a4

@ -196,12 +196,12 @@ where
&mut self,
spi: &mut SPI,
buffer: &[u8],
x: u16,
y: u16,
width: u16,
height: u16,
x: u32,
y: u32,
width: u32,
height: u32,
) -> Result<(), SPI::Error> {
if buffer.len() as u16 != width / 8 * height {
if buffer.len() as u32 != width / 8 * height {
//TODO: panic!! or sth like that
//return Err("Wrong buffersize");
}

@ -28,10 +28,10 @@ pub trait Display {
}
pub struct Graphics<'a> {
pub(crate) width: u32,
pub(crate) height: u32,
pub(crate) rotation: DisplayRotation,
pub(crate) buffer: &'a mut [u8], //buffer: Box<u8>//[u8; 15000]
width: u32,
height: u32,
rotation: DisplayRotation,
buffer: &'a mut [u8], //buffer: Box<u8>//[u8; 15000]
}
impl<'a> Graphics<'a> {

Loading…
Cancel
Save