Programme de test pour lcd ITDB02

Fork of TFTLCD by Todor Todorov

Files at this revision

API Documentation at this revision

Comitter:
ttodorov
Date:
Mon Dec 03 15:38:56 2012 +0000
Parent:
5:09b6d228ceea
Child:
7:5c418fc1879f
Commit message:
- add standard __cplusplus ifdefs to headers

Changed in this revision

hx8340bs.h Show annotated file Show diff for this revision Revisions of this file
lcd_base.h Show annotated file Show diff for this revision Revisions of this file
ssd1289.h Show annotated file Show diff for this revision Revisions of this file
--- a/hx8340bs.h	Sun Dec 02 05:58:00 2012 +0000
+++ b/hx8340bs.h	Mon Dec 03 15:38:56 2012 +0000
@@ -34,6 +34,10 @@
 
 #include "lcd_base.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /** Represents a LCD instance.
  *
  * This is the utility class, through which the display can be manipulated
@@ -171,4 +175,8 @@
     DigitalOut* _lcd_pin_bl;
 };
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* TFTLCD_HX8340B_H */
--- 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 */
--- a/ssd1289.h	Sun Dec 02 05:58:00 2012 +0000
+++ b/ssd1289.h	Mon Dec 03 15:38:56 2012 +0000
@@ -34,6 +34,10 @@
 
 #include "lcd_base.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /** Represents a LCD instance.
  *
  * This is the utility class, through which the display can be manipulated
@@ -169,4 +173,8 @@
     DigitalOut* _lcd_pin_rd;
 };
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* TFTLCD_SSD1289_H */