diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html
index 045117b08ef..754057917ed 100644
--- a/Documentation/NuttShell.html
+++ b/Documentation/NuttShell.html
@@ -8,7 +8,7 @@
NuttShell (NSH)
- Last Updated: February 27, 2011
+ Last Updated: February 28, 2011
|
@@ -125,55 +125,55 @@
|
- 2.8 Get File Via TFTP (get)
+ 2.8 Exit NSH (exit)
|
|
- 2.9 Exit NSH (exit)
+ 2.9 Show Memory Manager Status (free)
|
|
- 2.10 Show Usage Command Usage (help)
+ 2.10 Get File Via TFTP (get)
|
|
- 2.11 Show Network Configuration (ifconfig)
+ 2.11 Show Usage Command Usage (help)
|
|
- 2.12 Send a signal to a task (kill)
+ 2.12 Show Network Configuration (ifconfig)
|
|
- 2.13 Setup/teardown the Loop Device (losetup)
+ 2.13 Send a signal to a task (kill)
|
|
- 2.14 List Directory Contents (ls)
+ 2.14 Setup/teardown the Loop Device (losetup)
|
|
- 2.15 Access Memory (mb, mh, and mw)
+ 2.15 List Directory Contents (ls)
|
|
- 2.16 Show Memory Manager Status (mem)
+ 2.16 Access Memory (mb, mh, and mw)
|
@@ -857,7 +857,68 @@ exec <hex-address>
+
+Command Syntax:
+
+exit
+
+
+ Synopsis.
+ Exit NSH. Only useful for the serial front end if you have started some other tasks (perhaps
+ using the exec command) and you would like to have NSH out of the
+ way. For the telnet front-end, exit terminates the telenet session.
+
+
+
+
+Command Syntax:
+
+free
+
+
+ Synopsis.
+ Show the current state of the memory allocator. For example,
+
+
+nsh> free
+ total used free largest
+Mem: 4194288 1591552 2602736 2601584
+nsh>
+
+Where:
+
+
+ total |
+ This is the total size of memory allocated for use by malloc in bytes. |
+
+
+ used |
+ This is the total size of memory occupied by chunks handed out by malloc. |
+
+
+ free |
+ This is the total size of memory occupied by free (not in use) chunks. |
+
+
+ largest |
+ Size of the largest free (not in use) chunk. |
+
+
+
+
@@ -892,26 +953,7 @@ get [-b|-n] [-f <local-path>] -h <ip-address> <remote-path>
-
-Command Syntax:
-
-exit
-
-
- Synopsis.
- Exit NSH. Only useful for the serial front end if you have started some other tasks (perhaps
- using the exec command) and you would like to have NSH out of the
- way. For the telnet front-end, exit terminates the telenet session.
-
-
-
@@ -928,7 +970,7 @@ help
@@ -954,7 +996,7 @@ eth0 HWaddr 00:18:11:80:10:06
@@ -970,7 +1012,7 @@ kill -<signal> <pid>
@@ -1023,7 +1065,7 @@ losetup d <dev-path>
@@ -1060,7 +1102,7 @@ ls [-lRs] <dir-path>
@@ -1111,55 +1153,6 @@ nsh> mh 0 16
nsh>
-
-
-Command Syntax:
-
-mem
-
-
- Synopsis.
- Show the current state of the memory allocator. For example,
-
-
-nsh> mem
- arena: fe2560
- ordblks: 1
- mxordblk: fdc3e0
- uordblks: 6180
- fordblks: fdc3e0
-nsh>
-
-Where:
-
-
- arena |
- This is the total size of memory allocated for use by malloc in bytes. |
-
-
- ordblks |
- This is the number of free (not in use) chunks. |
-
-
- mxordblk |
- Size of the largest free (not in use) chunk. |
-
-
- uordblks |
- This is the total size of memory occupied by chunks handed out by malloc. |
-
-
- fordblks |
- This is the total size of memory occupied by free (not in use) chunks. |
-
-
-
|
@@ -1831,6 +1824,11 @@ nsh>
|
|
CONFIG_EXAMPLES_NSH_DISABLE_EXIT |
+
+ free |
+
|
+ CONFIG_EXAMPLES_NSH_DISABLE_FREE |
+
get |
CONFIG_NET && CONFIG_NET_UDP &&
@@ -1871,11 +1869,6 @@ nsh>
CONFIG_EXAMPLES_NSH_DISABLE_MW
|
-
- mem |
-
|
- CONFIG_EXAMPLES_NSH_DISABLE_MEM |
-
mkdir |
!CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_WRITABLE4 |
@@ -2353,6 +2346,7 @@ nsh>
exec
exit
+ free
get
Greeting
help
@@ -2364,7 +2358,6 @@ nsh>
mb
mh
mw
- mem
mkdir
mkfatfs
mkfifo
diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html
index 0c11fc70485..52386107a6b 100644
--- a/Documentation/NuttX.html
+++ b/Documentation/NuttX.html
@@ -2038,6 +2038,8 @@ nuttx-5.18 2011-02-27 Gregory Nutt <spudmonkey@racsa.co.cr>
Dean Camera.
* examples/nsh -- Correct an usage of getopt(): If you stop calling getopt()
before all parameters are parsed, you can leave getopt() in a strange state.
+ * include/nuttx/fb.h -- Restore missing RGB type that was accidentally removed
+ when Nokia 6100 support was added.
* Rename arch/pjrc-8051 to arch/8051
* configs/ne64badge -- Add a configuration for the Future Electronics Group
NE64 Badge development board (Freescale MC9S12NE64)
@@ -2049,8 +2051,8 @@ nuttx-5.18 2011-02-27 Gregory Nutt <spudmonkey@racsa.co.cr>
mc9s12ne64 on the Future Electronics Group NE64 /PoE Badge board. Howeve,
this port remains untested until I figure out this BDM / Code Warrior
and paged build thing
- * Added a new 'kill' command to NSH that will support sending signals to
- running NuttX tasks.
+ * Added a new 'kill' command to NSH that will support sending signals to
+ running NuttX tasks.
pascal-2.0 2009-12-21 Gregory Nutt <spudmonkey@racsa.co.cr>
@@ -2083,6 +2085,9 @@ buildroot-1.9 2011-02-10 <spudmonkey@racsa.co.cr>
nuttx-5.19 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
+ * NSH: 'mem' command renamed to 'free'. Output is now more similar to the
+ Linux 'free' command.
+
pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
buildroot-1.10 2011-xx-xx
|