Shows how to use a display, the onboard SD Card and the onboard SPI Flash. Requires a display module with direct Arduino pinning

Dependencies:   DmTftLibrary SDFileSystem mbed

Revision:
4:93ca338876e2
Parent:
3:e1e1053e286f
--- a/DmDrawBmpBase.cpp	Mon Jul 07 11:43:01 2014 +0000
+++ b/DmDrawBmpBase.cpp	Wed Jul 09 09:38:56 2014 +0000
@@ -30,7 +30,6 @@
 
 bool DmDrawBmpBase::draw888Bitmap(DmTftBase& tft, uint16_t x, uint16_t y) {
   const uint8_t bytesPerPixel = 3;
-  uint32_t _bitmapOffset; 
   uint8_t red, green, blue;
   uint16_t row, column;
   uint16_t bytesPerRow = (bytesPerPixel*_width + 3) & ~3;