From 2d333142924f4e7396de449189e2fa383f29248f Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 22 Jul 2011 13:02:27 +0000 Subject: Documentation update git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3811 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/nximage/nximage_bkgd.c | 9 +++- nuttx/Documentation/NuttX.html | 40 +++++++++------ nuttx/Documentation/NuttXCommercial.html | 73 +++++++++++++++++++++++++++ nuttx/Documentation/NuttXDocumentation.html | 78 +++++++++++++++++++++++++++++ nuttx/Documentation/NuttXLinks.html | 39 ++++++--------- nuttx/Documentation/NuttXRelated.html | 71 ++++++++++++++++++++++++++ 6 files changed, 271 insertions(+), 39 deletions(-) create mode 100755 nuttx/Documentation/NuttXCommercial.html create mode 100755 nuttx/Documentation/NuttXDocumentation.html create mode 100755 nuttx/Documentation/NuttXRelated.html diff --git a/apps/examples/nximage/nximage_bkgd.c b/apps/examples/nximage/nximage_bkgd.c index 4774fe74e..1aa74f58f 100755 --- a/apps/examples/nximage/nximage_bkgd.c +++ b/apps/examples/nximage/nximage_bkgd.c @@ -339,7 +339,14 @@ void nximage_image(NXWINDOW hwnd) for (i = 0; i < SCALED_WIDTH; i++) { - g_runs[0].run[i] = nximage_avgcolor(g_runs[0].run[i], g_runs[1].run[i]); + /* Only average if the corresponding pixels in each row differ */ + + nxgl_mxpixel_t pix0 = g_runs[0].run[i]; + nxgl_mxpixel_t pix1 = g_runs[1].run[i]; + if (pix0 != pix1) + { + g_runs[0].run[i] = nximage_avgcolor(pix0, pix1); + } } #endif diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html index 9c9ba2389..a69a77c26 100644 --- a/nuttx/Documentation/NuttX.html +++ b/nuttx/Documentation/NuttX.html @@ -1649,6 +1649,10 @@

+ +
+
+ @@ -1672,21 +1676,23 @@ All code is complete for the basic NuttX port including header files for all AT32UC3* peripherals. The untested AVR32 code was present in the 5.12 release of NuttX. Since then, the basic RTOS port has solidified: - - The basic, port (including the verified apps/examples/ostest configuration) was be released in NuttX-5.13. - A complete port will include drivers for additional AVR32 UC3 devices -- like SPI and USB --- and will be available in a later release, - time permitting. +

+ +

+ The basic, port (including the verified apps/examples/ostest configuration) was be released in NuttX-5.13. + A complete port will include drivers for additional AVR32 UC3 devices -- like SPI and USB --- and will be available in a later release, + time permitting.

@@ -1867,6 +1873,10 @@

+ +
+
+ diff --git a/nuttx/Documentation/NuttXCommercial.html b/nuttx/Documentation/NuttXCommercial.html new file mode 100755 index 000000000..a4d4de1b9 --- /dev/null +++ b/nuttx/Documentation/NuttXCommercial.html @@ -0,0 +1,73 @@ + + + NuttX Links + + +  + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Project Links +
+ + + + + Documentation +
+ + + + + Related Projects +
+ + + Commercial Sites +
  +
  • NX-Engineering
  • +
  • Raztek Solutions
  • +
  • 2G Engineering
  • +
  • ISOTEL Research
  • +
    + + NuttX + +
    + + NuttX + NuttX + +
    + + diff --git a/nuttx/Documentation/NuttXDocumentation.html b/nuttx/Documentation/NuttXDocumentation.html new file mode 100755 index 000000000..bc8842dd1 --- /dev/null +++ b/nuttx/Documentation/NuttXDocumentation.html @@ -0,0 +1,78 @@ + + + NuttX Links + + +  + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + Project Links +
    + + + NuttX Documentation +
      +
  • User Guide
  • +
  • Porting Guide
  • +
  • NuttShell (NSH)
  • +
  • NXFLAT
  • +
  • NX Graphics
  • +
  • Demand Paging
  • +
  • README Files
  • +
  • Change Log
  • +
  • To-Do List
  • +
    + + + + + Related Projects +
    + + + + + Commercial Sites +
    + + NuttX + +
    + + NuttX + NuttX + +
    + + diff --git a/nuttx/Documentation/NuttXLinks.html b/nuttx/Documentation/NuttXLinks.html index 5eb615653..394ee3c5a 100755 --- a/nuttx/Documentation/NuttXLinks.html +++ b/nuttx/Documentation/NuttXLinks.html @@ -31,40 +31,33 @@ - + + + - NuttX Documentation + Documentation - -   - -
  • User Guide
  • -
  • Porting Guide
  • -
  • NuttShell (NSH)
  • -
  • NXFLAT
  • -
  • NX Graphics
  • -
  • Demand Paging
  • -
  • README Files
  • -
  • Change Log
  • -
  • To-Do List
  • - - + + + - Commercial Sites + Related Projects -   - -
  • NX-Engineering
  • -
  • Raztek Solutions
  • -
  • 2G Engineering
  • -
  • ISOTEL Research
  • + + + + + + + Commercial Sites + diff --git a/nuttx/Documentation/NuttXRelated.html b/nuttx/Documentation/NuttXRelated.html new file mode 100755 index 000000000..37b0fae7c --- /dev/null +++ b/nuttx/Documentation/NuttXRelated.html @@ -0,0 +1,71 @@ + + + NuttX Links + + +  + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + Project Links +
    + + + + + Documentation +
    + + + Related Projects +
      +
  • Osmocom-BB
  • +
  • RGMP
  • +
    + + + + + Commercial Sites +
    + + NuttX + +
    + + NuttX + NuttX + +
    + + -- cgit v1.2.3