Modified version of the DmTftLibrary, optimized for the LPC4088 Experiment Base Board

Dependents:   lpc4088_ebb_dm_calc lpc4088_ebb_dm_bubbles

Fork of DmTftLibrary by Display Module

Revision:
2:59be7fca4581
Parent:
0:d6ff5fa503e8
--- a/DmTftBase.h	Tue May 13 11:21:11 2014 +0000
+++ b/DmTftBase.h	Tue May 20 12:21:43 2014 +0200
@@ -35,6 +35,8 @@
   DmTftBase(const uint16_t width, const uint16_t height) : _width(width), _height(height){};
   virtual ~DmTftBase() { };
 
+  virtual void init(void) = 0;
+
   uint16_t width() { return _width; }
   uint16_t height() { return _height; }