aboutsummaryrefslogtreecommitdiffstats
path: root/docs/console.txt
diff options
context:
space:
mode:
authorJoel Bodenmann <joel.bodenmann@hevs.ch>2012-10-25 01:04:36 +0200
committerJoel Bodenmann <joel.bodenmann@hevs.ch>2012-10-25 01:04:36 +0200
commite04654e6d9c18262f0e2818ea344a1e961bf1d73 (patch)
treeafebe662a28e2768910fe5c9579f2972e9f1faa6 /docs/console.txt
parent9bcabe082ab7c35eadeaf552bcab8d6b429fc78b (diff)
downloaduGFX-e04654e6d9c18262f0e2818ea344a1e961bf1d73.tar.gz
uGFX-e04654e6d9c18262f0e2818ea344a1e961bf1d73.tar.bz2
uGFX-e04654e6d9c18262f0e2818ea344a1e961bf1d73.zip
version 1.3 release
Diffstat (limited to 'docs/console.txt')
-rw-r--r--docs/console.txt20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/console.txt b/docs/console.txt
deleted file mode 100644
index 09e7ae86..00000000
--- a/docs/console.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-The console module acts as a BaseSequentialStream at a user defined area of the LCD.
-
-Requirements:
-The console code requires a lld that has vertical scroll implemented.
-It is also necessary to enable the scroll code:
-
- #define GDISP_NEED_SCROLL TRUE
-
-Usage:
-
- #include "console.h"
-
- /* Define a console object */
- GLCDConsole CON1;
-
- /* initialise the console to take up the entire screen */
- lcdConsoleInit(&CON1, 0, 0, 320, 240, &fontLarger, Black, White);
-
- /* print something */
- chprintf((BaseSequentialStream *)&CON1, "Hello the time is %d\nGoodbye.", chTimeNow());