From 50022e7984b51f8092cf058b84f14ed7fb3b4684 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 26 Sep 2012 13:48:24 +0200 Subject: [PATCH] compiler warning fix --- drivers/gdisp/SSD1289/ssd1289_lld.c.h | 3 +++ 1 file changed, 3 insertions(+) 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);