Update README file, comments.

This commit is contained in:
Gregory Nutt 2017-01-08 18:10:56 -06:00
parent 3b1b112153
commit 3deb8eda59
2 changed files with 41 additions and 40 deletions

View File

@ -931,7 +931,10 @@ Where <subdir> is one of the following:
nxwm
----
This is a special configuration setup for the NxWM window manager
UnitTest. The NxWM window manager can be found here:
UnitTest.
NOTES:
1. The NxWM window manager can be found here:
nuttx-code/NxWidgets/nxwm
@ -943,7 +946,7 @@ Where <subdir> is one of the following:
nuttx-code/NxWidgets/UnitTests/README.txt
Here is the quick summary of the build steps (Assuming that all of
2. Here is the quick summary of the build steps (Assuming that all of
the required packages are available in a directory ~/nuttx-code):
1. Install the nxwm configuration
@ -983,6 +986,9 @@ Where <subdir> is one of the following:
$ cd ~/nuttx-code/nuttx
$ make
3. Performance is not so good in this example configuration because it
uses the slower SPI interfaces.
STATUS:
17-01-08: There are instabilities in this configuration that make it
not usable on this platform. While the equivalent configuration works

View File

@ -170,8 +170,7 @@
ILI9341_MADCTL_LANDSCAPE_BGR | \
ILI9341_MADCTL_LANDSCAPE_MH)
/*
* Portrait: 00000000 / 00001000 / h08
/* Portrait: 00000000 / 00001000 / h08
*
* MY: 0
* MX: 0
@ -199,8 +198,7 @@
ILI9341_MADCTL_PORTRAIT_BGR | \
ILI9341_MADCTL_PORTRAIT_MH)
/*
* RLandscape: 01100000 / 01101000 / h68
/* RLandscape: 01100000 / 01101000 / h68
*
* MY: 0
* MX: 1
@ -229,8 +227,7 @@
ILI9341_MADCTL_RLANDSCAPE_BGR | \
ILI9341_MADCTL_RLANDSCAPE_MH)
/*
* RPortrait: 11000000 / 11001000 / hc8
/* RPortrait: 11000000 / 11001000 / hc8
*
* MY: 1
* MX: 1
@ -463,7 +460,6 @@ FAR struct lcd_dev_s *board_lcd_getdev(int lcddev)
return NULL;
}
/************************************************************************************
* Name: board_lcd_initialize
*
@ -494,8 +490,7 @@ int board_lcd_initialize(void)
if (dev)
{
/*
* Get a reference to valid lcd driver structure to avoid repeated
/* Get a reference to valid lcd driver structure to avoid repeated
* initialization of the LCD Device. Also enables uninitializing of
* the LCD Device.
*/