diff --git a/ChangeLog b/ChangeLog index 6543fbad91..cab2ef2036 100644 --- a/ChangeLog +++ b/ChangeLog @@ -233,4 +233,5 @@ * Add strcat() and strncat() * Integrated uIP micro webserver * Corrected a serious bug in TCP queue management + * Fix leak in socket close logic diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 2bee653cd0..870918360e 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -358,14 +358,24 @@ is available that be used to build a NuttX-compatible arm-elf toolchain.
DM320 (ARM9) - This build for the ARM9 target includes a signficant subset of OS - features, ethernet driver and full TCP/IP, UDP and (minimal) ICMP - stacks (via uIP). (11/8/07) + This build for the ARM9 target includes a significant subset of OS + features, a filesystem, Ethernet driver, full TCP/IP, UDP and (minimal) + ICMP stacks (via uIP) and a small network test application: (11/8/07, + configuration netconfig, examples/nettest)
text data bss dec hex filename 49472 296 3972 53740 d1ec nuttx+
+ Another build for the ARM9 target includes a minimal OS feature + set, Ethernet driver, full TCP/IP and (minimal) ICMP stacks, and + a small webserver: (11/20/07, configuration uipconfig, examples/uip) +
++ text data bss dec hex filename + 52040 72 4148 56260 dbc4 nuttx +
87C52 A reduced functionality OS test for the 8052 target requires only about 18-19Kb: @@ -694,6 +704,7 @@ Other memory: * Add strcat() and strncat() * Integrated uIP micro webserver * Corrected a serious bug in TCP queue management + * Fix leak in socket close logic