diff --git a/Documentation/NXGraphicsSubsystem.html b/Documentation/NXGraphicsSubsystem.html index 857fcd1a47..2a6e88c9d2 100644 --- a/Documentation/NXGraphicsSubsystem.html +++ b/Documentation/NXGraphicsSubsystem.html @@ -12,7 +12,7 @@

NX Graphics Subsystem

-

Last Updated: May 4, 2012

+

Last Updated: May 7, 2012

@@ -3249,6 +3249,10 @@ int nxf_convert_32bpp(FAR uint32_t *dest, uint16_t height,
Build in support for mouse input.
CONFIG_NX_KBD:
Build in support of keypad/keyboard input. +
CONFIG_NX_WRITEONLY: +
Define if the underlying graphics device does not support read operations. + Automatically defined if CONFIG_NX_LCDDRIVER and CONFIG_LCD_NOGETRUN + are defined. @@ -3364,10 +3368,6 @@ int nxf_convert_32bpp(FAR uint32_t *dest, uint16_t height, Default: The smallest enabled pixel depth. (see CONFIG_NX_DISABLE_*BPP)
CONFIG_NXCONSOLE_CURSORCHAR:
The bitmap code to use as the cursor. Default '_' -
CONFIG_NXCONSOLE_NOGETRUN: -
NxConsole needs to know if it can read from the LCD or not. - If reading from the LCD is supported, then NxConsole can do more efficient scrolling. - Default: Supported
CONFIG_NXCONSOLE_MXCHARS:
NxConsole needs to remember every character written to the console so that it can redraw the window. This setting determines the size of some internal memory allocations used to hold the character data. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 23c4126790..4c3e93a6ac 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -5371,6 +5371,12 @@ build one for each color component. Unless you have such special hardware, this value should be undefined or set to 1. +
  • + CONFIG_NX_WRITEONLY: + Define if the underlying graphics device does not support read operations. + Automatically defined if CONFIG_NX_LCDDRIVER and CONFIG_LCD_NOGETRUN + are defined. +
  • CONFIG_NX_DISABLE_1BPP, CONFIG_NX_DISABLE_2BPP, CONFIG_NX_DISABLE_4BPP, CONFIG_NX_DISABLE_8BPP @@ -5405,6 +5411,12 @@ build Check the README.txt file in each board configuration directory to see if any of these are supported by the board LCD logic.
  • +
  • + CONFIG_LCD_NOGETRUN: + NX components need to know if it can read from the LCD or not. + If reading from the LCD is supported, then NxConsole can do more efficient scrolling. + Default: Supported +
  • CONFIG_NX_MOUSE: Build in support for mouse input.