summaryrefslogtreecommitdiff
path: root/nuttx/examples/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-10 13:28:01 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-10 13:28:01 +0000
commitaa6af4588d7552b583662c9063d074a1b4f2d931 (patch)
treef054759f87b20fac87b65a3edf3d0cd987229547 /nuttx/examples/README.txt
parent7b9c0155d6b254db6a316043fabcc9074ca0d1e0 (diff)
downloadpx4-nuttx-aa6af4588d7552b583662c9063d074a1b4f2d931.tar.gz
px4-nuttx-aa6af4588d7552b583662c9063d074a1b4f2d931.tar.bz2
px4-nuttx-aa6af4588d7552b583662c9063d074a1b4f2d931.zip
Debugging TELNET NSH (still problems)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@434 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/README.txt')
-rw-r--r--nuttx/examples/README.txt38
1 files changed, 38 insertions, 0 deletions
diff --git a/nuttx/examples/README.txt b/nuttx/examples/README.txt
index 0ba708925..eda3d5510 100644
--- a/nuttx/examples/README.txt
+++ b/nuttx/examples/README.txt
@@ -37,6 +37,44 @@ examples/nsh
Size of a static I/O buffer used for file access (ignored if
there is no filesystem).
+ * CONFIG_EXAMPLES_NSH_TELNET
+ By default, NSH is configured to use the serial console.
+ If CONFIG_EXAMPLES_NSH_TELNET is set to 'y', then a TELENET
+ server front-end is selected. When this option is provided,
+ you must log into NuttX remotely using telnet in order to
+ access NSH.
+
+ If CONFIG_EXAMPLES_NSH_TELNET is selected, then there some other
+ configuration settings that apply:
+
+ * CONFIG_EXAMPLES_NSH_IOBUFFER_SIZE
+ Determines the size of the I/O buffer to use for sending/
+ receiving TELNET commands/reponses
+
+ * CONFIG_EXAMPLES_NSH_CMD_SIZE
+ The size of one parsed NSH command
+
+ * CONFIG_EXAMPLES_NSH_STACKSIZE
+ The stack size to use when spawning new threads as new TELNET
+ connections are established.
+
+ * CONFIG_EXAMPLES_NSH_DHCPC
+ Obtain the the IP address via DHCP.
+
+ * CONFIG_EXAMPLES_NSH_IPADDR
+ If CONFIG_EXAMPLES_NSH_DHCPC is NOT set, then the static IP
+ address must be provided.
+
+ * CONFIG_EXAMPLES_NSH_DRIPADDR
+ Default router IP address
+
+ * CONFIG_EXAMPLES_NSH_NETMASK
+ Network mask
+
+ * CONFIG_EXAMPLES_NSH_NOMAC
+ Set if your ethernet hardware has no built-in MAC address.
+ If set, a bogus MAC will be assigned.
+
examples/mount
^^^^^^^^^^^^^^