summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-12-23 11:13:56 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-12-23 11:13:56 -0600
commit510b3dc3b44605010d2a1434f8cbe5e6f5e45a2b (patch)
treeb9578747b4c5d187402a457ddc92836be49fe018 /nuttx/ChangeLog
parentdd54bdbd26463c92a1353d4017619fff20c186ce (diff)
downloadnuttx-510b3dc3b44605010d2a1434f8cbe5e6f5e45a2b.tar.gz
nuttx-510b3dc3b44605010d2a1434f8cbe5e6f5e45a2b.tar.bz2
nuttx-510b3dc3b44605010d2a1434f8cbe5e6f5e45a2b.zip
Fixes a few more high priority, nested interrupt logic
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 7ddd2d0a4..ba2493b8b 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -6273,3 +6273,13 @@
(2013-12-22).
* configs/viewtool-stm32f107/scripts: Need to do some special things
in linking of the common vectors are used (2013-12-22).
+ * arch/arm/include/*/irq*.h: Add definition NR_VECTORS so that the RAM
+ vector logic can know how many vectors there are. NR_IRQS is often
+ not equal to NR_VECTORS (2013-12-23).
+ * arch/arm/src/*_vectors.S: Standardize the name of the vector table
+ and the name of the common vector handling logic so that the MCU-
+ independent logic and work with these (2013-12-23).
+ * configs/viewtool-stm32f107/scripts: Move the RAM vector tables to the
+ beginning of SRAM. It seems to require this alignament. Also, we
+ don't need different scripts for the CMNVECTOR case now that the vector
+ table has a common name.