Add framework in NxConsole to support VT100 escape sequences

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4542 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-03-30 18:42:40 +00:00
parent 57d25b1ff1
commit c60b58a91f
11 changed files with 542 additions and 108 deletions
+2 -2
View File
@@ -87,7 +87,7 @@
* If CONFIG_NXCONSOLE_FONTCACHE, then this setting will control the size
* of the font cache (in number of glyphs). Default: 16.
* CONFIG_NXCONSOLE_LINESEPARATION
* This the space (in rows) between each row of test. Default: 2
* This the space (in rows) between each row of test. Default: 0
* CONFIG_NXCONSOLE_NOWRAP
* By default, lines will wrap when the test reaches the right hand side
* of the window. This setting can be defining to change this behavior so
@@ -137,7 +137,7 @@
/* Space (in rows) between lines */
#ifndef CONFIG_NXCONSOLE_LINESEPARATION
# define CONFIG_NXCONSOLE_LINESEPARATION 2
# define CONFIG_NXCONSOLE_LINESEPARATION 0
#endif
/****************************************************************************