Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: Adafruit_ST7735.cpp
- Revision:
- 5:9c04464cd1b4
- Parent:
- 4:2123ea52a4d9
- Child:
- 6:c964b41674fc
diff -r 2123ea52a4d9 -r 9c04464cd1b4 Adafruit_ST7735.cpp
--- a/Adafruit_ST7735.cpp Sun Nov 22 12:39:52 2015 +0000
+++ b/Adafruit_ST7735.cpp Sun Nov 22 13:15:07 2015 +0000
@@ -374,23 +374,6 @@
void Adafruit_ST7735::fillScreen(uint16_t color)
{
fillRect(0, 0, _width, _height, color);
-/*
- uint8_t x, y, hi = color >> 8, lo = color;
-
- setAddrWindow(0, 0, _width-1, _height-1);
-
- _rs = 1;
- _cs = 0;
-
- for(y=_height; y>0; y--) {
- for(x=_width; x>0; x--) {
- lcdPort.write( hi );
- lcdPort.write( lo );
- }
- }
-
- _cs = 1;
-*/
}