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

Dependencies:   DmTftLibrary SDFileSystem mbed

Files at this revision

API Documentation at this revision

Comitter:
displaymodule
Date:
Wed Jul 09 09:36:33 2014 +0000
Parent:
4:09766ad4bd87
Child:
6:592bba211e38
Commit message:
Fixed warning

Changed in this revision

DmDrawBmpBase.cpp Show annotated file Show diff for this revision Revisions of this file
--- 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;