summaryrefslogtreecommitdiffstats
path: root/nuttx/Documentation
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-10-23 20:51:26 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-10-23 20:51:26 +0000
commitcbf29552c5edade1a50a27f78edd21966ec7525b (patch)
tree9fae6c26a91ead580d60afd7f372421ead64c243 /nuttx/Documentation
parent5a2f76cf1c7501ca05c2386ce7ef8ddb4e9d51e6 (diff)
update USB configuration settings
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1068 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/Documentation')
-rw-r--r--nuttx/Documentation/NuttX.html3
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html17
2 files changed, 19 insertions, 1 deletions
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index d151f208fa..d9f51c0303 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
- <p>Last Updated: October 22, 2008</p>
+ <p>Last Updated: October 23, 2008</p>
</td>
</tr>
</table>
@@ -1140,6 +1140,7 @@ nuttx-0.3.17 2008-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
* FAT: Fix access to unaligned 32-bit values in partion table (start sector &amp; size)
* Fixed a problem with a un-initialized variable in the USB serial driver.
* Added USB storage NXP LPC214x configuration
+ * Added a test for USB storage under examples/usbstorage
pascal-0.1.3 2008-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index c8eaa532e9..bf755cff26 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -1535,6 +1535,16 @@ The system can be re-made subsequently by just typing <code>make</code>.
</li>
</ul>
+<h2>SPI-based MMC/SD driver<h2>
+<ul>
+ <li>
+ <code>CONFIG_MMCSD_NSLOTS</code>: Number of MMC/SD slots supported by the driver. Default is one.
+ </li>
+ <li>
+ <code>CONFIG_MMCSD_READONLY</code>: Provide read-only access. Default is Read/Write
+ </li>
+</ul>
+
<h2>Network Support</h2>
<h3>TCP/IP and UDP support via uIP</h2>
<ul>
@@ -1656,6 +1666,9 @@ The system can be re-made subsequently by just typing <code>make</code>.
<h3>USB Serial Device Class Driver</h3>
<ul>
<li>
+ <code>CONFIG_USBSER</code>: Enable compilation of the USB serial driver
+ </li>
+ <li>
<code>CONFIG_USBSER_EPINTIN</code>: The logical 7-bit address of a hardware endpoint that supports interrupt IN operation
</li>
<li>
@@ -1681,6 +1694,10 @@ The system can be re-made subsequently by just typing <code>make</code>.
<h3>USB Storage Device Configuration</h3>
<ul>
<li>
+ <code>CONFIG_USBSTRG</code>:
+ Enable compilation of the USB storage driver
+ </li>
+ <li>
<code>CONFIG_USBSTRG_EP0MAXPACKET</code>:
Max packet size for endpoint 0
</li>