diff --git a/ChangeLog b/ChangeLog index b1a1903df92..13e40f30340 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1642,5 +1642,14 @@ unable to replicate the build problems in my environment, but the changes have be incorporated in hope of correcting the build issues in other environments. + * drivers/i2c/st_lis331dl.c: I2C-based driver for the LIS331DL MEMS + motion sensor. Contributed by Uros Platise. + * Makefile: The NuttX build system will now supported building NuttX as two + separately linked images: (1) a kernel-mode RTOS image, and (2) a user- + mode application image that communicates to the RTOS kernel via system + calls. A lot more still must be done. + + + diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 224b1bef81b..5721c5eff2b 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@
Last Updated: March 30, 2011
+Last Updated: April 3, 2011
Last Updated: April 1, 2011
+Last Updated: April 3, 2011
@@ -2034,7 +2034,7 @@ extern void up_ledoff(int led);
- include/nuttx/i2c.h.
+ include/nuttx/i2c/i2c.h.
All structures and APIs needed to work with I2C drivers are provided in this header file.
CONFIG_PASS1_OBJECT: The name of the first pass object.
+
+ CONFIG_PASS1_TARGET: The name of the first pass build target.
+
CONFIG_PASS1_BUILDIR:
- The path, relative to the top NuttX build directory to directory that contains the Makefile to build the first pass object.
- The Makefile must support the following targets:
- arch/$(CONFIG_ARCH)/src/$(CONFIG_PASS1_OBJECT), and+ The path, relative to the top NuttX build directory to directory that contains the Makefile to build the first pass object. + The Makefile must support the following targets: +
++
CONFIG_PASS1_TARGET (if defined), andCONFIG_PASS1_OBJECT: May be used to include an extra, pass1 object into the final link.
+ This would probably be the object generated from the CONFIG_PASS1_TARGET.
+ It may be available at link time in the arch/<architecture>/src directory.
+