Browse Source

decreased the change of a overflow happening in draw_pixel, some more calculations and improvements are needed

embedded-hal-1.0
Chris 8 years ago
parent
commit
03f2cbc942
  1. 2
      examples/embedded_linux/src/main.rs
  2. 2
      src/drawing/mod.rs

2
examples/embedded_linux/src/main.rs

@ -13,6 +13,8 @@ use lin_hal::sysfs_gpio::Direction;
use lin_hal::Delay;
// activate spi, gpio in raspi-config
// needs to be run with sudo because of some sysfs_gpio permission problems and follow-up timing problems
// see https://github.com/rust-embedded/rust-sysfs-gpio/issues/5 and follow-up issues
// DigitalIn Hack as long as it's not in the linux_embedded_hal

2
src/drawing/mod.rs

@ -87,7 +87,7 @@ impl Graphics {
pub fn draw_pixel(&self, buffer: &mut[u8], x: u16, y: u16, color: &Color) {
let (idx, bit) = match self.rotation {
Displayorientation::Rotate0 | Displayorientation::Rotate180
=> ((x + self.width * y) / 8,
=> ((x / 8 + (self.width / 8) * y) ,
0x80 >> (x % 8)),
Displayorientation::Rotate90 | Displayorientation::Rotate270
=> (y / 8 * self.width + x,

Loading…
Cancel
Save