summaryrefslogtreecommitdiff
path: root/nuttx/Documentation/NuttxPortingGuide.html
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-03 23:18:34 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-03 23:18:34 +0000
commit8e1975393114d786b3699f926a416c3945ec3dfd (patch)
tree836687c8a01c9ab067c477767811699a0584323f /nuttx/Documentation/NuttxPortingGuide.html
parentf885003829cabac6e8a2db65b318f897f25ff933 (diff)
downloadpx4-nuttx-8e1975393114d786b3699f926a416c3945ec3dfd.tar.gz
px4-nuttx-8e1975393114d786b3699f926a416c3945ec3dfd.tar.bz2
px4-nuttx-8e1975393114d786b3699f926a416c3945ec3dfd.zip
Move all non-standard, NuttX header files into include/nuttx/net
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4450 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Documentation/NuttxPortingGuide.html')
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index 1966409a6..f99cf45ad 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -12,7 +12,7 @@
<h1><big><font color="#3c34ec">
<i>NuttX RTOS Porting Guide</i>
</font></big></h1>
- <p>Last Updated: February 28, 2011</p>
+ <p>Last Updated: March 3, 2011</p>
</td>
</tr>
</table>
@@ -1113,12 +1113,12 @@ include/
| `-- <i>(Standard header files)</i>
|-- cxx/
| `-- <i>(C++ standard header files)</i>
-|-- net/
-| `-- uip/
-| `-- <i>(uIP specific header files)</i>
|-- netinet/
| `-- <i>(Standard header files)</i>
|-- nuttx/
+| |-net/
+| | `-- uip/
+| | `-- <i>(uIP specific header files)</i>
| `-- <i>(NuttX specific header files)</i>
`- sys/
`-- <i>(More standard header files)</i>
@@ -1185,7 +1185,7 @@ lib/
<h2>2.12 <a name="DirStructNet">nuttx/net</a></h2>
<p>
- This directory contains the implementation of the socket APIs.
+ This directory contains the implementation of the NuttX internal socket APIs.
The subdirectory, <code>uip</code> contains the uIP port.
</P>
@@ -2424,7 +2424,7 @@ extern void up_ledoff(int led);
<ul>
<li>
<p>
- <b><code>include/net/uip/uip-arch.h</code></b>.
+ <b><code>include/nuttx/net/uip/uip-arch.h</code></b>.
All structures and APIs needed to work with Ethernet drivers are provided in this header file.
The structure <code>struct uip_driver_s</code> defines the interface and is passed to uIP via
<code>netdev_register()</code>.