summaryrefslogtreecommitdiff
path: root/nuttx/configs/olimex-lpc1766stk/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-14 23:24:42 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-14 23:24:42 +0000
commitb2a7bfbb51f5bf8b34ea593f3b5e76aecf9161ea (patch)
tree55d556ae70c0f6a7479269d6736abd6684a57ef9 /nuttx/configs/olimex-lpc1766stk/README.txt
parent0e24b0de612ad596103e4e01d250f0be12278783 (diff)
downloadpx4-nuttx-b2a7bfbb51f5bf8b34ea593f3b5e76aecf9161ea.tar.gz
px4-nuttx-b2a7bfbb51f5bf8b34ea593f3b5e76aecf9161ea.tar.bz2
px4-nuttx-b2a7bfbb51f5bf8b34ea593f3b5e76aecf9161ea.zip
apps/ make changes + SLIP MTU notes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3381 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/olimex-lpc1766stk/README.txt')
-rwxr-xr-xnuttx/configs/olimex-lpc1766stk/README.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/nuttx/configs/olimex-lpc1766stk/README.txt b/nuttx/configs/olimex-lpc1766stk/README.txt
index 86e50949b..72340ffff 100755
--- a/nuttx/configs/olimex-lpc1766stk/README.txt
+++ b/nuttx/configs/olimex-lpc1766stk/README.txt
@@ -816,16 +816,15 @@ Where <subdir> is one of the following:
This should create an interface with a name like sl0, or sl1, etc.
Add -d to get debug output. This will show the interface name.
+ NOTE: The Linux slip module hard-codes its MTU size to 296. So you
+ might as well set CONFIG_NET_BUFSIZE to 296 as well.
+
4. After turning over the line to the SLIP driver, you must configure
the network interface. Again, you do this using the standard
ifconfig and route commands. Assume that we have connected to a
host PC with address 192.168.0.101 from your target with address
10.0.0.2. On the Linux PC you would execute the following as root:
- $ ifconfig sl0 10.0.0.2/24 up
-
- Or maybe,
-
$ ifconfig sl0 10.0.0.1 pointopoint 10.0.0.2 up
$ route add 10.0.0.2 dev sl0
@@ -835,6 +834,10 @@ Where <subdir> is one of the following:
$ tcpdump -n -nn -i sl0 -x -X -s 1500
+ NOTES: Only UART1 supports the hardware handshake. If hardware
+ handshake is not available, then you might try the slattach option
+ -L which is supposed to enable "3-wire operation."
+
thttpd:
This builds the THTTPD web server example using the THTTPD and
the examples/thttpd application.