From a2b8f82b1fff1f64865267807e0a2b078fec43d8 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 20 Oct 2012 21:42:19 +0000 Subject: [PATCH] Update documentation for recently added configuration options git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5241 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttShell.html | 8 +++++++ Documentation/NuttxPortingGuide.html | 34 ++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index bcf62a5a91..ad204f5dc9 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -2559,6 +2559,13 @@ nsh> If set, a bogus MAC will be assigned. + + CONFIG_NSH_MAX_ROUNDTRIP + + This is the maximum round trip for a response to a ICMP ECHO request. + It is in units of deciseconds. The default is 20 (2 seconds). + +

@@ -3537,6 +3544,7 @@ mount -t vfat /dev/ram1 /tmp

  • CONFIG_NSH_IOBUFFER_SIZE
  • CONFIG_NSH_IPADDR
  • CONFIG_NSH_LINELEN
  • +
  • CONFIG_NSH_MAX_ROUNDTRIP
  • CONFIG_NSH_NESTDEPTH
  • CONFIG_NSH_NETMASK
  • CONFIG_NSH_NOMAC
  • diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index bf2a0cc4f5..a16032db57 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -4445,6 +4445,35 @@ build CONFIG_ARCH_BZERO

    +

  • + If CONFIG_ARCH_MEMCPY is not selected, then you make also select Daniel + Vik's optimized implementation of memcpy(): +

    + + +

    + And if CONFIG_MEMCPY_VIK, the following tuning options are available: +

    + +
  • The architecture may provide custom versions of certain standard header files: @@ -5180,6 +5209,11 @@ build

  • CONFIG_NET_RESOLV_ENTRIES: Number of resolver entries
  • +
  • + CONFIG_NET_RESOLV_MAXRESPONSE: + This setting determines the maximum size of response message that can be received by the DNS resolver. + The default is 96 but may need to be larger on enterprise networks (perhaps 176). +
  • THTTPD