summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-18 22:36:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-18 22:36:24 +0000
commit6082f71dcfd8f55b731a32ef27abf441ddee0b3c (patch)
tree88a05cc954ff23e64ebff4d377eb096370d47c67
parent7873ab1c30c52cdcd7a162af850c593ebee54e9f (diff)
downloadnuttx-6082f71dcfd8f55b731a32ef27abf441ddee0b3c.tar.gz
nuttx-6082f71dcfd8f55b731a32ef27abf441ddee0b3c.tar.bz2
nuttx-6082f71dcfd8f55b731a32ef27abf441ddee0b3c.zip
update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2391 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/ChangeLog13
-rw-r--r--nuttx/Documentation/NuttX.html26
-rw-r--r--nuttx/TODO11
3 files changed, 40 insertions, 10 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 7f20e961b..0425d16bd 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -980,7 +980,7 @@
driver: (1) Need to disconnect after reset received, (2) Status setup
to recover from stall on TX endpoint.
-2010.1 2010-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
+5.0 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
* arch/hc: Adding framework to support m68hc11/12
* configs/demo9s12ne64: Configuration to support Freescale DEMO9S12NE64
@@ -1006,4 +1006,13 @@
* graphics/ and examples/nx - Fix numerous build errors that have been
introduced lately. NXGL has suffered some bit-rot from not being used
in some of the most recent ports.
-
+ * The misc/pascal NuttX add-on package has been updated to use the new
+ standard types from stdint.h and stdbool.h and re-integrated with NuttX.
+ The released pascal-2.0 will be the first version that contains the
+ compatible changes.
+ * arch/arm/src/lm3s/lm3s_ethernet.c - Fixed an important bug in the LM3S
+ ethernet driver: If full packet is received, the packet-too-big check
+ will fail because it needs to subtract 6 from the packet size (to
+ account for the 2-byte packet length and the 4-byte packet FCS in the
+ FIFO).
+ * net/accept.c - Fixed a bad assertion (only happens when debug is enabled).
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index 8ec5558f0..a53c96fee 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
- <p>Last Updated: December 17, 2009</p>
+ <p>Last Updated: December 18, 2009</p>
</td>
</tr>
</table>
@@ -1606,7 +1606,7 @@ buildroot-0.1.7 2009-06-26 &lt;spudmonkey@racsa.co.cr&gt;
</table>
<ul><pre>
-nuttx-2010.1 2010-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
+nuttx-5.0 2009-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
* arch/hc: Adding framework to support m68hc11/12
* configs/demo9s12ne64: Configuration to support Freescale DEMO9S12NE64
@@ -1632,10 +1632,24 @@ nuttx-2010.1 2010-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
* graphics/ and examples/nx - Fix numerous build errors that have been
introduced lately. NXGL has suffered some bit-rot from not being used
in some of the most recent ports.
-
-pascal-2010.1 2010-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
-
-buildroot-2010.1 2010-xx-xx &lt;spudmonkey@racsa.co.cr&gt;
+ * The misc/pascal NuttX add-on package has been updated to use the new
+ standard types from stdint.h and stdbool.h and re-integrated with NuttX.
+ The released pascal-2.0 will be the first version that contains the
+ compatible changes.
+ * arch/arm/src/lm3s/lm3s_ethernet.c - Fixed an important bug in the LM3S
+ ethernet driver: If full packet is received, the packet-too-big check
+ will fail because it needs to subtract 6 from the packet size (to
+ account for the 2-byte packet length and the 4-byte packet FCS in the
+ FIFO).
+ * net/accept.c - Fixed a bad assertion (only happens when debug is enabled).
+
+pascal-2.0 2010-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
+
+ * Updated to use standard C99 types in stdint.h and
+ stdbool.h. This change was necessary for compatibility
+ with NuttX-5.0.
+
+buildroot-1.8 2010-xx-xx &lt;spudmonkey@racsa.co.cr&gt;
* configs/cortexm3-defconfig-4.3.3: Added support for NuttX NXFLAT
tools.
diff --git a/nuttx/TODO b/nuttx/TODO
index 06d1275ba..3134b54b6 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -1,4 +1,4 @@
-NuttX TODO List (Last updated December 17, 2009)
+NuttX TODO List (Last updated December 18, 2009)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(5) Task/Scheduler (sched/)
@@ -32,7 +32,7 @@ NuttX TODO List (Last updated December 17, 2009)
(4) Renesas M16C/26 (arch/sh/src/m16c)
(8) z80/z8/ez80 (arch/z80/)
(9) z16 (arch/z16/)
- (0) mc68hc1x (arch/hc)
+ (1) mc68hc1x (arch/hc)
o Task/Scheduler (sched/)
^^^^^^^^^^^^^^^^^^^^^^^
@@ -1000,3 +1000,10 @@ o z16 (arch/z16)
o mc68hc1x (arch/hc)
^^^^^^^^^^^^^^^^^^
+
+ Description: There is no script for building in banked mode (more correctly, there
+ is a script, but logic inside the script has not yet been implemented).
+ It would be necessary to implement banked mode to able to access more
+ the 48Kb of FLASH.
+ Status: Open.
+ Priority: Medium/Low. \ No newline at end of file