1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-12-24 21:21:24 +01:00

Enhance OLED/LCD speed

This commit is contained in:
Neil McKechnie 2021-02-18 16:05:29 +00:00
parent ec1d674da7
commit 2244add9c0

View File

@ -28,10 +28,6 @@
} }
void LCDDisplay::interfake(int p1, int p2, int p3) {(void)p1; (void)p2; lcdRows=p3; } void LCDDisplay::interfake(int p1, int p2, int p3) {(void)p1; (void)p2; lcdRows=p3; }
void LCDDisplay::clearNative() {LCDDriver.clear();} void LCDDisplay::clearNative() {LCDDriver.clear();}
void LCDDisplay::setRowNative(byte row) { void LCDDisplay::setRowNative(byte row) { LCDDriver.setCursor(0, row); }
LCDDriver.setCursor(0, row); void LCDDisplay::writeNative(char b){ LCDDriver.write(b); }
LCDDriver.print(F(" "));
LCDDriver.setCursor(0, row);
}
void LCDDisplay::writeNative(char * b){ LCDDriver.print(b); }
void LCDDisplay::displayNative() { LCDDriver.display(); } void LCDDisplay::displayNative() { LCDDriver.display(); }