You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pr...@apache.org on 2020/09/04 23:02:43 UTC

[incubator-nuttx] 02/10: PR feedback changes

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

protobits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit b85fcd756621e6ec1df3520ba6e1316d690b6ac2
Author: Adam Feuer <ad...@adamfeuer.com>
AuthorDate: Fri Sep 4 13:58:43 2020 -0700

    PR feedback changes
---
 Documentation/contributing/making-changes.rst |  9 +--
 Documentation/guides/simulator.rst            | 82 ++++++++++++++++++++++-----
 2 files changed, 72 insertions(+), 19 deletions(-)

diff --git a/Documentation/contributing/making-changes.rst b/Documentation/contributing/making-changes.rst
index 0c9c871..96f58e9 100644
--- a/Documentation/contributing/making-changes.rst
+++ b/Documentation/contributing/making-changes.rst
@@ -1,8 +1,11 @@
 .. include:: /substitutions.rst
 .. _making-changes:
 
-Making Changes
-==============
+Making Changes Using Git
+========================
+
+The Apache NuttX project uses the `Git version control system <https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control>`_
+to track changes, and the source code is hosted on `GitHub <https://www.github.com>`_.
 
 If you want to make changes to NuttX, for your own personal use, or to submit them back to project to improve NuttX,
 that's easy. For the purposes of this guide, you'll need a `GitHub <https://www.github.com>`_ account, since
@@ -24,8 +27,6 @@ Here's how to do it:
 
    If you don't have a `GitHub <https://www.github.com>`_ account, it's free to
    sign up.
-   |br|
-   |br|
 
 
 #. Fork the Project
diff --git a/Documentation/guides/simulator.rst b/Documentation/guides/simulator.rst
index 4340492..b1a2a0e 100644
--- a/Documentation/guides/simulator.rst
+++ b/Documentation/guides/simulator.rst
@@ -11,7 +11,9 @@ application, or other communication protocols. It's also handy for trying out Ap
 having a piece of embedded hardware.
 
 This guide assumes you're on Linux. It works on Windows and Mac too— if you know how,
-submit a PR the NuttX Companion to update this guide!
+submit a PR to improve this guide!
+
+.. todo:: Add Mac and Windows instructions
 
 Compiling
 ---------
@@ -21,35 +23,85 @@ Compiling
    There are a lot of simulator configurations available that set you up to test various
    operating system features.
 
+   Here we'll use the ``sim:nsh`` basic NuttX Shell configuration.
+
    Here we'll use the ``sim:tcpblaster`` configuration because it comes with networking
    that is ready to use.
 
-    .. code-block:: bash
+    .. code-block:: console
 
        $ cd nuttx
        $ ./tools/configure.sh sim:tcpblaster
 
+    .. code-block:: console
+
+       $ cd nuttx
+       $ ./tools/configure.sh sim:nsh
+
 #. Compile
 
-    .. code-block:: bash
+    .. code-block:: console
+
+       $ make
+
+#. Run the simulator:
+
+    .. code-block:: console
+
+       $ ./nuttx
+       login: admin
+       password: Administrator
+       User Logged-in!
+
+       NuttShell (NSH) NuttX-9.1.0
+       MOTD: username=admin password=Administrator
+       nsh> help
+       help usage:  help [-v] [<cmd>]
+
+         [         cp        exit      losetup   mv        rmdir     true
+         ?         cmp       false     ls        mw        set       uname
+         basename  dirname   free      mb        poweroff  sh        unset
+         break     dd        help      mkdir     ps        sleep     usleep
+         cat       echo      hexdump   mkfatfs   pwd       test      xd
+         cd        exec      kill      mh        rm        time
+
+       Builtin Apps:
+         hello  nsh
+
+       nsh>
+
+#. Stop the simulator:
+
+    .. code-block:: console
 
-       $ make clean; make
+       nsh> poweroff
+       $
+       $ # we're back at the Linux prompt.
 
-Running
--------
+Accessing the Network
+---------------------
+
+#. Here we'll use the ``sim:tcpblaster`` configuration because it comes with networking
+   that is ready to use.
+
+    .. code-block:: console
+
+       $ make distclean
+       $ ./tools/configure.sh sim:tcpblaster
+       $ make
 
 #. Give the Simulator Privileges
 
    On recent Linux distributions, you need to give the ``nuttx`` program the capabilities
    (similar to permissions) to access the network:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        $ sudo setcap cap_net_admin+ep ./nuttx
 
 #. Run the simulator:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        $ ./nuttx
 
@@ -57,14 +109,14 @@ Running
 
    On Apache NuttX:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        nsh> ifup eth0
 
    On Linux, first you need to find your main network interface— this will usually either
    be an ethernet or wireless network adapter. Do this:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        $ ifconfig
        lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
@@ -92,7 +144,7 @@ Running
    Then, on Linux do this to set up the tap network interface and route that will let
    the Apache Nuttx simulator access the network:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        $ sudo ./tools/simhostroute.sh wlp0s20f3 on
        $ ping -c 1 10.0.1.2  # nuttx system
@@ -108,7 +160,7 @@ Running
    First let's ping the network interface of our Linux host to prove we can see the
    gateway to the Internet:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        nsh> ping -c 1 10.0.1.1
        nsh> ping -c 1 10.0.1.1
@@ -119,7 +171,7 @@ Running
     Now let's ping one of Google's DNS servers to prove we can access the rest of the
     Internet:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        nsh> ping -c 1 8.8.8.8
        PING 8.8.8.8 56 bytes of data
@@ -131,9 +183,9 @@ Running
 Stopping
 --------
 
-The only really effective way to stop the simulator is kill it from another terminal:
+If you don't have an nsh prompt, the only effective way to stop the simulator is kill it from another terminal:
 
-    .. code-block:: bash
+    .. code-block:: console
 
        $ pkill nuttx