summaryrefslogtreecommitdiff
path: root/nuttx/examples/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-05-15 18:57:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-05-15 18:57:24 +0000
commiteac348a697436ceec946239162a85abdd1fd5b7d (patch)
treea0dddfc34d871773e242d34a8a037c2c71fe3ad6 /nuttx/examples/README.txt
parenta778f0c7e076b4bab911945ee2630d767448d147 (diff)
downloadpx4-nuttx-eac348a697436ceec946239162a85abdd1fd5b7d.tar.gz
px4-nuttx-eac348a697436ceec946239162a85abdd1fd5b7d.tar.bz2
px4-nuttx-eac348a697436ceec946239162a85abdd1fd5b7d.zip
Finish framebuffer support
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2672 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/README.txt')
-rw-r--r--nuttx/examples/README.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/nuttx/examples/README.txt b/nuttx/examples/README.txt
index 1f3849975..d7da69b04 100644
--- a/nuttx/examples/README.txt
+++ b/nuttx/examples/README.txt
@@ -116,6 +116,17 @@ examples/nx
include 2, 4, 8, 16, 24, and 32. Default is 32.
CONFIG_EXAMPLES_NX_RAWWINDOWS -- Use raw windows; Default is to
use pretty, framed NXTK windows with toolbars.
+ CONFIG_EXAMPLES_NX_EXTERNINIT - The driver for the graphics device on
+ this platform requires some unusual initialization. This is the
+ for, for example, SPI LCD/OLED devices. If this configuration is
+ selected, then the platform code must provide an LCD initialization
+ function with a prototype like:
+
+ #ifdef CONFIG_NX_LCDDRIVER
+ FAR struct lcd_dev_s *up_nxdrvinit(unsigned int devno);
+ #else
+ FAR struct fb_vtable_s *up_nxdrvinit(unsigned int devno);
+ #endif
This test can be performed with either the single-user version of
NX or with the multiple user version of NX selected with CONFIG_NX_MULTIUSER.