aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-09-26 13:48:24 +0200
committerJoel Bodenmann <joel@unormal.org>2012-09-26 13:48:24 +0200
commit50022e7984b51f8092cf058b84f14ed7fb3b4684 (patch)
tree9f7fd97b985941a7a0ec207dd44af1efc6fbe57e /drivers
parent68a7d2b75421c02d43c2482a0dfb7ea5fa2a1b88 (diff)
downloaduGFX-50022e7984b51f8092cf058b84f14ed7fb3b4684.tar.gz
uGFX-50022e7984b51f8092cf058b84f14ed7fb3b4684.tar.bz2
uGFX-50022e7984b51f8092cf058b84f14ed7fb3b4684.zip
compiler warning fix
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gdisp/SSD1289/ssd1289_lld.c.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gdisp/SSD1289/ssd1289_lld.c.h b/drivers/gdisp/SSD1289/ssd1289_lld.c.h
index 602401b3..79134239 100644
--- a/drivers/gdisp/SSD1289/ssd1289_lld.c.h
+++ b/drivers/gdisp/SSD1289/ssd1289_lld.c.h
@@ -31,6 +31,9 @@
#define Set_RD palSetPad(LCD_CMD_PORT, LCD_RD);
#define Clr_RD palClearPad(LCD_CMD_PORT, LCD_RD);
+ extern void lld_lcdWriteGPIO(uint16_t data);
+ extern uint16_t lld_lcdReadGPIO(void);
+
static __inline void lld_lcdWriteIndex(uint16_t index) {
Clr_RS; Set_RD;
lld_lcdWriteGPIO(index);