diff options
author | Thomas Saunders <trsaunders@gmail.com> | 2012-06-25 18:51:35 +0100 |
---|---|---|
committer | Thomas Saunders <trsaunders@gmail.com> | 2012-06-25 18:51:35 +0100 |
commit | a51bb1bf5f298168d9b0964bf3a68a1090f8d00c (patch) | |
tree | f0b18420fce805300fbb58388f6e7171bba4b9e4 /console.h | |
parent | 79f7278f3df0c377390653fdab3496371fb1cc66 (diff) | |
download | uGFX-a51bb1bf5f298168d9b0964bf3a68a1090f8d00c.tar.gz uGFX-a51bb1bf5f298168d9b0964bf3a68a1090f8d00c.tar.bz2 uGFX-a51bb1bf5f298168d9b0964bf3a68a1090f8d00c.zip |
merge Abhishek's changes, small fixes for API changes
Diffstat (limited to 'console.h')
-rw-r--r-- | console.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ #ifndef CONSOLE_H #define CONSOLE_H +#include "glcd.h" + /** * @brief Structure representing a GLCD driver. */ @@ -36,7 +38,7 @@ struct GLCDConsole { /* text buffer */ uint8_t *buf; /* font */ - const uint8_t *font; + font_t font; /* lcd area to use */ uint16_t x0,y0; /* current cursor position, in pixels */ @@ -56,7 +58,7 @@ extern "C" { #endif msg_t lcdConsoleInit(GLCDConsole *console, uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, - const uint8_t *font, uint8_t *buffer, uint16_t bkcolor, uint16_t color); + font_t font, uint8_t *buffer, uint16_t bkcolor, uint16_t color); msg_t lcdConsolePut(GLCDConsole *console, char c); msg_t lcdConsoleWrite(GLCDConsole *console, uint8_t *bp, size_t n); |