You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gi...@apache.org on 2021/04/16 00:14:33 UTC

[incubator-nuttx-website] branch asf-site updated: Publishing web: 706feb7a8f09ba9c0ea4111239db9d4c65cf9a00 docs: d0c31f09e7c966308e375aa650541d3682f4b996

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 110b742  Publishing web: 706feb7a8f09ba9c0ea4111239db9d4c65cf9a00 docs: d0c31f09e7c966308e375aa650541d3682f4b996
110b742 is described below

commit 110b74263845811b42955b8c5cf38f9c413286b6
Author: Ouss4 <ab...@gmail.com>
AuthorDate: Fri Apr 16 00:13:16 2021 +0000

    Publishing web: 706feb7a8f09ba9c0ea4111239db9d4c65cf9a00 docs: d0c31f09e7c966308e375aa650541d3682f4b996
---
 content/docs/10.0.0/index.html                     |   2 +-
 content/docs/10.0.1/index.html                     |   2 +-
 content/docs/latest/_sources/faq/index.rst.txt     |  59 +++++++++++++
 .../esp32/boards/esp32-devkitc/index.rst.txt       |  10 +++
 content/docs/latest/faq/index.html                 |  92 +++++++++++++++++++++
 content/docs/latest/index.html                     |   2 +-
 content/docs/latest/objects.inv                    | Bin 31579 -> 31725 bytes
 .../xtensa/esp32/boards/esp32-devkitc/index.html   |   8 ++
 content/docs/latest/searchindex.js                 |   2 +-
 content/feed.xml                                   |   4 +-
 10 files changed, 175 insertions(+), 6 deletions(-)

diff --git a/content/docs/10.0.0/index.html b/content/docs/10.0.0/index.html
index cdaac47..789fc49 100644
--- a/content/docs/10.0.0/index.html
+++ b/content/docs/10.0.0/index.html
@@ -207,7 +207,7 @@ by following these <a class="reference internal" href="contributing/documentatio
 <div class="section" id="nuttx-documentation">
 <h1>NuttX Documentation<a class="headerlink" href="#nuttx-documentation" title="Permalink to this headline">¶</a></h1>
 <p>NuttX is a real-time operating system (RTOS) with an emphasis on standards compliance and small footprint. Scalable from 8-bit to 32-bit microcontroller environments, the primary governing standards in NuttX are Posix and ANSI standards. Additional standard APIs from Unix and other common RTOS’s (such as VxWorks) are adopted for functionality not available under these standards, or for functionality that is not appropriate for deeply-embedded environments (such as fork()).</p>
-<p>Last Updated: 15 April 21 at 00:11</p>
+<p>Last Updated: 16 April 21 at 00:10</p>
 <div class="toctree-wrapper compound">
 <p class="caption"><span class="caption-text">Table of Contents</span></p>
 <ul class="current">
diff --git a/content/docs/10.0.1/index.html b/content/docs/10.0.1/index.html
index 8382e1d..e7a0dc9 100644
--- a/content/docs/10.0.1/index.html
+++ b/content/docs/10.0.1/index.html
@@ -211,7 +211,7 @@ by following these <a class="reference internal" href="contributing/documentatio
 <div class="section" id="nuttx-documentation">
 <h1>NuttX Documentation<a class="headerlink" href="#nuttx-documentation" title="Permalink to this headline">¶</a></h1>
 <p>NuttX is a real-time operating system (RTOS) with an emphasis on standards compliance and small footprint. Scalable from 8-bit to 32-bit microcontroller environments, the primary governing standards in NuttX are Posix and ANSI standards. Additional standard APIs from Unix and other common RTOS’s (such as VxWorks) are adopted for functionality not available under these standards, or for functionality that is not appropriate for deeply-embedded environments (such as fork()).</p>
-<p>Last Updated: 15 April 21 at 00:11</p>
+<p>Last Updated: 16 April 21 at 00:11</p>
 <div class="toctree-wrapper compound">
 <p class="caption"><span class="caption-text">Table of Contents</span></p>
 <ul class="current">
diff --git a/content/docs/latest/_sources/faq/index.rst.txt b/content/docs/latest/_sources/faq/index.rst.txt
index 1d8302c..d111001 100644
--- a/content/docs/latest/_sources/faq/index.rst.txt
+++ b/content/docs/latest/_sources/faq/index.rst.txt
@@ -8,6 +8,65 @@ FAQ
 NSH Tricks
 ==========
 
+How to increase the command line length?
+----------------------------------------
+
+You can increase the Max command line length from 64 to other value,
+this way:
+
+Application Configuration  --->
+        NSH Library  --->
+            Command Line Configuration  --->
+                (64) Max command line length
+
+How do I enable editing support on the command line?
+----------------------------------------------------
+
+You need to change Command Line Editor from "Minimal readline" to
+"Command Line Editor", this way:
+
+    Application Configuration  --->
+        NSH Library  --->
+            Command Line Configuration  --->
+                Command Line Editor (Command Line Editor)  --->
+
+How to enable command line history?
+-----------------------------------
+
+You need to enable these options in the menuconfig:
+
+    Application Configuration  --->
+        System Libraries and NSH Add-Ons  --->
+            -*- readline() Support  --->
+                [*]     Command line history
+                (80)      Command line history length
+                (16)      Command line history records
+
+Note: If you are using the "Command Line Editor" instead of the "readline"
+then you need to use this other option:
+
+    Application Configuration  --->
+        System Libraries and NSH Add-Ons  --->
+            -*- EMACS-like Command Line Editor  --->
+                	[*]   Command line history
+                	(80)    Command line history length
+                	(16)    Command line history records
+
+How to enable autocomplete on the command line?
+-----------------------------------------------
+
+You need to enable these options in the menuconfig:
+
+    Application Configuration  --->
+        System Libraries and NSH Add-Ons  --->
+            -*- readline() Support  --->
+                [*]     Tab completion
+                (64)      Maximum built-in matches
+                (64)      Maximum external command matches
+
+Note: autocomplete is not enabled when "Command Line Editor" instead of the
+"readline".
+
 How to interrupt an NSH Application using Ctrl^C ?
 --------------------------------------------------
 
diff --git a/content/docs/latest/_sources/platforms/xtensa/esp32/boards/esp32-devkitc/index.rst.txt b/content/docs/latest/_sources/platforms/xtensa/esp32/boards/esp32-devkitc/index.rst.txt
index e816933..97db6b1 100644
--- a/content/docs/latest/_sources/platforms/xtensa/esp32/boards/esp32-devkitc/index.rst.txt
+++ b/content/docs/latest/_sources/platforms/xtensa/esp32/boards/esp32-devkitc/index.rst.txt
@@ -215,6 +215,16 @@ Once booted the following command is used to mount a FAT file system::
 
     mount -t vfat /dev/mmcsd0 /mnt
 
+module
+------
+
+This config is to run apps/examples/module.
+
+sotest
+------
+
+This config is to run apps/examples/sotest.
+
 spiflash
 --------
 
diff --git a/content/docs/latest/faq/index.html b/content/docs/latest/faq/index.html
index 5d414c5..db67356 100644
--- a/content/docs/latest/faq/index.html
+++ b/content/docs/latest/faq/index.html
@@ -130,6 +130,10 @@
 <li class="toctree-l1"><a class="reference internal" href="../reference/index.html">API Reference</a></li>
 <li class="toctree-l1 current"><a class="current reference internal" href="#">FAQ</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="#nsh-tricks">NSH Tricks</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="#how-to-increase-the-command-line-length">How to increase the command line length?</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#how-do-i-enable-editing-support-on-the-command-line">How do I enable editing support on the command line?</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#how-to-enable-command-line-history">How to enable command line history?</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#how-to-enable-autocomplete-on-the-command-line">How to enable autocomplete on the command line?</a></li>
 <li class="toctree-l3"><a class="reference internal" href="#how-to-interrupt-an-nsh-application-using-ctrl-c">How to interrupt an NSH Application using Ctrl^C ?</a></li>
 </ul>
 </li>
@@ -217,6 +221,94 @@
 <h1>FAQ<a class="headerlink" href="#faq" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="nsh-tricks">
 <h2>NSH Tricks<a class="headerlink" href="#nsh-tricks" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="how-to-increase-the-command-line-length">
+<h3>How to increase the command line length?<a class="headerlink" href="#how-to-increase-the-command-line-length" title="Permalink to this headline">¶</a></h3>
+<p>You can increase the Max command line length from 64 to other value,
+this way:</p>
+<dl class="simple">
+<dt>Application Configuration  —&gt;</dt><dd><dl class="simple">
+<dt>NSH Library  —&gt;</dt><dd><dl class="simple">
+<dt>Command Line Configuration  —&gt;</dt><dd><ol class="arabic simple" start="64">
+<li><p>Max command line length</p></li>
+</ol>
+</dd>
+</dl>
+</dd>
+</dl>
+</dd>
+</dl>
+</div>
+<div class="section" id="how-do-i-enable-editing-support-on-the-command-line">
+<h3>How do I enable editing support on the command line?<a class="headerlink" href="#how-do-i-enable-editing-support-on-the-command-line" title="Permalink to this headline">¶</a></h3>
+<p>You need to change Command Line Editor from “Minimal readline” to
+“Command Line Editor”, this way:</p>
+<blockquote>
+<div><dl class="simple">
+<dt>Application Configuration  —&gt;</dt><dd><dl class="simple">
+<dt>NSH Library  —&gt;</dt><dd><dl class="simple">
+<dt>Command Line Configuration  —&gt;</dt><dd><p>Command Line Editor (Command Line Editor)  —&gt;</p>
+</dd>
+</dl>
+</dd>
+</dl>
+</dd>
+</dl>
+</div></blockquote>
+</div>
+<div class="section" id="how-to-enable-command-line-history">
+<h3>How to enable command line history?<a class="headerlink" href="#how-to-enable-command-line-history" title="Permalink to this headline">¶</a></h3>
+<p>You need to enable these options in the menuconfig:</p>
+<blockquote>
+<div><dl class="simple">
+<dt>Application Configuration  —&gt;</dt><dd><dl class="simple">
+<dt>System Libraries and NSH Add-Ons  —&gt;</dt><dd><dl class="simple">
+<dt>-<a href="#id2"><span class="problematic" id="id3">*</span></a>- readline() Support  —&gt;</dt><dd><p>[*]     Command line history
+(80)      Command line history length
+(16)      Command line history records</p>
+</dd>
+</dl>
+</dd>
+</dl>
+</dd>
+</dl>
+</div></blockquote>
+<p>Note: If you are using the “Command Line Editor” instead of the “readline”
+then you need to use this other option:</p>
+<blockquote>
+<div><dl class="simple">
+<dt>Application Configuration  —&gt;</dt><dd><dl class="simple">
+<dt>System Libraries and NSH Add-Ons  —&gt;</dt><dd><dl class="simple">
+<dt>-<a href="#id4"><span class="problematic" id="id5">*</span></a>- EMACS-like Command Line Editor  —&gt;</dt><dd><p>[*]   Command line history
+(80)    Command line history length
+(16)    Command line history records</p>
+</dd>
+</dl>
+</dd>
+</dl>
+</dd>
+</dl>
+</div></blockquote>
+</div>
+<div class="section" id="how-to-enable-autocomplete-on-the-command-line">
+<h3>How to enable autocomplete on the command line?<a class="headerlink" href="#how-to-enable-autocomplete-on-the-command-line" title="Permalink to this headline">¶</a></h3>
+<p>You need to enable these options in the menuconfig:</p>
+<blockquote>
+<div><dl class="simple">
+<dt>Application Configuration  —&gt;</dt><dd><dl class="simple">
+<dt>System Libraries and NSH Add-Ons  —&gt;</dt><dd><dl class="simple">
+<dt>-<a href="#id6"><span class="problematic" id="id7">*</span></a>- readline() Support  —&gt;</dt><dd><p>[*]     Tab completion
+(64)      Maximum built-in matches
+(64)      Maximum external command matches</p>
+</dd>
+</dl>
+</dd>
+</dl>
+</dd>
+</dl>
+</div></blockquote>
+<p>Note: autocomplete is not enabled when “Command Line Editor” instead of the
+“readline”.</p>
+</div>
 <div class="section" id="how-to-interrupt-an-nsh-application-using-ctrl-c">
 <h3>How to interrupt an NSH Application using Ctrl^C ?<a class="headerlink" href="#how-to-interrupt-an-nsh-application-using-ctrl-c" title="Permalink to this headline">¶</a></h3>
 <p>You need to enable these options in the menuconfig:</p>
diff --git a/content/docs/latest/index.html b/content/docs/latest/index.html
index 5687ec1..72cdf02 100644
--- a/content/docs/latest/index.html
+++ b/content/docs/latest/index.html
@@ -212,7 +212,7 @@ by following these <a class="reference internal" href="contributing/documentatio
 <div class="section" id="nuttx-documentation">
 <h1>NuttX Documentation<a class="headerlink" href="#nuttx-documentation" title="Permalink to this headline">¶</a></h1>
 <p>NuttX is a real-time operating system (RTOS) with an emphasis on standards compliance and small footprint. Scalable from 8-bit to 64-bit microcontroller environments, the primary governing standards in NuttX are POSIX and ANSI standards. Additional standard APIs from Unix and other common RTOS’s (such as VxWorks) are adopted for functionality not available under these standards, or for functionality that is not appropriate for deeply-embedded environments (such as fork()).</p>
-<p>Last Updated: 15 April 21 at 00:12</p>
+<p>Last Updated: 16 April 21 at 00:11</p>
 <div class="toctree-wrapper compound">
 <p class="caption"><span class="caption-text">Table of Contents</span></p>
 <ul class="current">
diff --git a/content/docs/latest/objects.inv b/content/docs/latest/objects.inv
index 45a9480..5e5bfe9 100644
Binary files a/content/docs/latest/objects.inv and b/content/docs/latest/objects.inv differ
diff --git a/content/docs/latest/platforms/xtensa/esp32/boards/esp32-devkitc/index.html b/content/docs/latest/platforms/xtensa/esp32/boards/esp32-devkitc/index.html
index db5df7f..43cd0ca 100644
--- a/content/docs/latest/platforms/xtensa/esp32/boards/esp32-devkitc/index.html
+++ b/content/docs/latest/platforms/xtensa/esp32/boards/esp32-devkitc/index.html
@@ -454,6 +454,14 @@ MISO --&gt; 12
 </pre></div>
 </div>
 </div>
+<div class="section" id="module">
+<h3>module<a class="headerlink" href="#module" title="Permalink to this headline">¶</a></h3>
+<p>This config is to run apps/examples/module.</p>
+</div>
+<div class="section" id="sotest">
+<h3>sotest<a class="headerlink" href="#sotest" title="Permalink to this headline">¶</a></h3>
+<p>This config is to run apps/examples/sotest.</p>
+</div>
 <div class="section" id="spiflash">
 <h3>spiflash<a class="headerlink" href="#spiflash" title="Permalink to this headline">¶</a></h3>
 <p>This config tests the external SPI that comes with an ESP32 module connected
diff --git a/content/docs/latest/searchindex.js b/content/docs/latest/searchindex.js
index 05c01de..9381667 100644
--- a/content/docs/latest/searchindex.js
+++ b/content/docs/latest/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["applications/index","applications/nsh/builtin","applications/nsh/commands","applications/nsh/config","applications/nsh/customizing","applications/nsh/index","applications/nsh/installation","applications/nsh/login","applications/nsh/nsh","components/binfmt","components/drivers/block/index","components/drivers/character/analog","components/drivers/character/can","components/drivers/character/foc","components/drivers/character/index","components/drivers/character [...]
\ No newline at end of file
+Search.setIndex({docnames:["applications/index","applications/nsh/builtin","applications/nsh/commands","applications/nsh/config","applications/nsh/customizing","applications/nsh/index","applications/nsh/installation","applications/nsh/login","applications/nsh/nsh","components/binfmt","components/drivers/block/index","components/drivers/character/analog","components/drivers/character/can","components/drivers/character/foc","components/drivers/character/index","components/drivers/character [...]
\ No newline at end of file
diff --git a/content/feed.xml b/content/feed.xml
index 9c20d10..857c754 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -5,8 +5,8 @@
     <description></description>
     <link>/</link>
     <atom:link href="/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Thu, 15 Apr 2021 00:13:48 +0000</pubDate>
-    <lastBuildDate>Thu, 15 Apr 2021 00:13:48 +0000</lastBuildDate>
+    <pubDate>Fri, 16 Apr 2021 00:13:14 +0000</pubDate>
+    <lastBuildDate>Fri, 16 Apr 2021 00:13:14 +0000</lastBuildDate>
     <generator>Jekyll v3.8.5</generator>
     
       <item>