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.
This commit is contained in:
Damien George 2018-09-18 13:49:49 +10:00
parent 7c4f98db85
commit dc77fdb7d4

View File

@ -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):