mirror of
https://github.com/micropython/micropython.git
synced 2026-01-10 05:57:16 +01:00
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:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user