Flush all of the dirty part of the image to the lcd. Only called during startup and shutdown.
| 432 | |
| 433 | // Flush all of the dirty part of the image to the lcd. Only called during startup and shutdown. |
| 434 | void Lcd::FlushAll() noexcept |
| 435 | { |
| 436 | while (FlushSome()) |
| 437 | { |
| 438 | delayMicroseconds(20); // at 2MHz clock speed we need a delay here, at 1MHz we don't |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | // Set the cursor position |
| 443 | void Lcd::SetCursor(PixelNumber r, PixelNumber c) noexcept |
no outgoing calls
no test coverage detected