aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortrsaunders <trsaunders@gmail.com>2012-07-22 22:23:53 +0100
committertrsaunders <trsaunders@gmail.com>2012-07-22 22:23:53 +0100
commitc1a8f5ea2b7900ff1d91644e865da63eb36581cc (patch)
tree51ec664d32af767aa7369448d856ad5a10940ba2
parent4a11dfd0b8bbd8a206f4ac63bccb947135948ee5 (diff)
downloaduGFX-c1a8f5ea2b7900ff1d91644e865da63eb36581cc.tar.gz
uGFX-c1a8f5ea2b7900ff1d91644e865da63eb36581cc.tar.bz2
uGFX-c1a8f5ea2b7900ff1d91644e865da63eb36581cc.zip
tidy up bottom and edges of console
-rw-r--r--glcd/console.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/glcd/console.c b/glcd/console.c
index acfae978..724fae0e 100644
--- a/glcd/console.c
+++ b/glcd/console.c
@@ -100,6 +100,8 @@ msg_t lcdConsoleInit(GLCDConsole *console, uint16_t x0, uint16_t y0, uint16_t wi
console->color = color;
console->font = font;
+
+ lcdDrawRect(x0, y0, width, height,1, console->bkcolor);
}
msg_t lcdConsolePut(GLCDConsole *console, char c) {
@@ -118,6 +120,9 @@ msg_t lcdConsolePut(GLCDConsole *console, char c) {
} else {
width = lcdMeasureChar(c, console->font);
if((console->cx + width) >= console->sx) {
+ /* clear the text at the end of the line */
+ lcdDrawRect(console->cx, console->cy, console->cx + width, console->cy + console->fy,
+ 1, console->bkcolor);
console->cx = 0;
console->cy += console->fy;
}