diff options
author | Tectu <joel@unormal.org> | 2012-08-13 13:51:48 -0700 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-08-13 13:51:48 -0700 |
commit | 436fa7d740d3235f4660c48679cea924b3ba73a3 (patch) | |
tree | a0134ccad298bd9f5e063f7fe2d8d6cc909636bc /src | |
parent | f833dc27c0ebcf92ef34c0f842088c5efb09a277 (diff) | |
parent | 61f527498f6c6705792c39f0b38d6c8794d7b39e (diff) | |
download | uGFX-436fa7d740d3235f4660c48679cea924b3ba73a3.tar.gz uGFX-436fa7d740d3235f4660c48679cea924b3ba73a3.tar.bz2 uGFX-436fa7d740d3235f4660c48679cea924b3ba73a3.zip |
Merge pull request #41 from trsaunders/master
documentation changes
Diffstat (limited to 'src')
-rw-r--r-- | src/console.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/console.c b/src/console.c index 55bc3312..e5f2371c 100644 --- a/src/console.c +++ b/src/console.c @@ -25,6 +25,8 @@ #include "gdisp_fonts.h"
#include "console.h"
+#if defined(GDISP_NEED_SCROLL)
+
/*
* Interface implementation. The interface is write only
*/
@@ -168,3 +170,6 @@ msg_t lcdConsoleWrite(GLCDConsole *console, char *bp, size_t n) { return RDY_OK;
}
+
+
+#endif /* GDISP_NEED_SCROLL */
|