aboutsummaryrefslogtreecommitdiffstats
path: root/console.h
diff options
context:
space:
mode:
authorThomas Saunders <trsaunders@gmail.com>2012-06-25 18:51:35 +0100
committerThomas Saunders <trsaunders@gmail.com>2012-06-25 18:51:35 +0100
commita51bb1bf5f298168d9b0964bf3a68a1090f8d00c (patch)
treef0b18420fce805300fbb58388f6e7171bba4b9e4 /console.h
parent79f7278f3df0c377390653fdab3496371fb1cc66 (diff)
downloaduGFX-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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/console.h b/console.h
index 13b77605..0ed2f51c 100644
--- a/console.h
+++ b/console.h
@@ -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);