aboutsummaryrefslogtreecommitdiffstats
path: root/glcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'glcd.h')
-rw-r--r--glcd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/glcd.h b/glcd.h
index f65732bc..222a7eb2 100644
--- a/glcd.h
+++ b/glcd.h
@@ -41,6 +41,11 @@ extern const uint8_t* font;
#define lcdGotoXY(x,y) { cx=x; cy=y; }
#define lcdGetCurFontHeight() (font[FONT_TABLE_HEIGHT_IDX])
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
void lcdInit(void);
void lcdClear(uint16_t color);
@@ -71,4 +76,8 @@ uint16_t lcdGetOrientation(void);
uint16_t lcdBGR2RGB(uint16_t color);
uint16_t lcdGetPixelColor(uint16_t x, uint16_t y);
+#ifdef __cplusplus
+}
+#endif
+
#endif