A modifiedversion of TFTLCD by Todor Todorov with ultra-fast operation for SSD1289 controller. TODO: speed-up fonts, add my own fonts Can work out-of-the-box with ST Nucleo F401RE

Dependents:   TFT_320QVT_Window_Drag_Demo TFT_320QVT_HelloWorld

Fork of TFTLCD by Todor Todorov

Revision:
6:059ca1648211
Parent:
5:09b6d228ceea
Child:
7:5c418fc1879f
--- a/lcd_base.h	Sun Dec 02 05:58:00 2012 +0000
+++ b/lcd_base.h	Mon Dec 03 15:38:56 2012 +0000
@@ -34,6 +34,10 @@
 #include "mbed.h"
 #include "fonts.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /** \def RGB(r,g,b)
  *  \brief Creates a RGB-565 color value.
  *
@@ -466,4 +470,8 @@
     font_metrics_t  _font;
 };
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* TFTLCD_BASE_H */