Shows how to use a display and the onboard SD Card. Requires a display module with an adapter

Dependencies:   DmTftLibrary SDFileSystem mbed

Revision:
5:ed6a302e0917
Parent:
3:030be860c83d
--- a/DmDrawBmpBase.cpp	Wed Jul 09 08:42:44 2014 +0000
+++ b/DmDrawBmpBase.cpp	Wed Jul 09 09:36:33 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;