Browse Source

drivers/display/lcd160cr.py: In fast_spi, send command before flushing.

The intention of oflush() is to flush the "fast SPI" command itself so that
the SPI object is ready to use when the function returns.
pull/3378/merge
Damien George 6 years ago
parent
commit
dc77fdb7d4
  1. 2
      drivers/display/lcd160cr.py

2
drivers/display/lcd160cr.py

@ -428,9 +428,9 @@ class LCD160CR:
self._send(self.buf19)
def fast_spi(self, flush=True):
self._send(b'\x02\x12')
if flush:
self.oflush()
self._send(b'\x02\x12')
return self.spi
def show_framebuf(self, buf):

Loading…
Cancel
Save