- code cleaned up in many points for a better readability - removed SPIPreinit and I2CPreinit classes - moved various method implementations from .h files to the corresponding .cpp ones - the splash() and clearDisplay() methods now directly update the display; no more need to call the display() method after them

Dependencies:   Adafruit_GFX mbed

Fork of Adafruit_GFX by Neal Horman

Revision:
14:edb3c36aa1a7
Parent:
9:ddb97c9850a2
--- a/Adafruit_GFX.cpp	Tue Oct 21 02:30:58 2014 +0000
+++ b/Adafruit_GFX.cpp	Sat Oct 25 20:41:38 2014 +0000
@@ -349,7 +349,6 @@
         drawFastHLine(a, y, b-a+1, color);
     }
 }
-#endif
 
 void Adafruit_GFX::drawBitmap(int16_t x, int16_t y, const uint8_t *bitmap, int16_t w, int16_t h, uint16_t color)
 {
@@ -362,6 +361,7 @@
         }
     }
 }
+#endif
 
 size_t Adafruit_GFX::writeChar(uint8_t c)
 {