summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-04 20:49:47 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-04 20:49:47 +0000
commit99a753f17a5f82ae34fbbbc564757bb99666afbd (patch)
treee5ab1ef913b7324c1e05d2a6a7a37171f24e2af5 /nuttx/ChangeLog
parent10b9a1fa0c8d68bb7f2c6fac7176669052831401 (diff)
downloadnuttx-99a753f17a5f82ae34fbbbc564757bb99666afbd.tar.gz
nuttx-99a753f17a5f82ae34fbbbc564757bb99666afbd.tar.bz2
nuttx-99a753f17a5f82ae34fbbbc564757bb99666afbd.zip
Fix buffer full test in generic CAN driver (plus fixes to comments)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4259 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 318adf258..a76c800b5 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2333,4 +2333,12 @@
performance.
* confgs/olimex-lpc1766stk/nsh: Now supports the CAN loopback test as an
optional "built-in" application.
+ * sched/irq_attach.c: Fix an issue with disabling interrupts when they are
+ detached. For the PIC32, this can't be done because there is a 1-to-many
+ relationship between vector numbers and interrupt numbers or different.
+ Added a new configuration option CONFIG_ARCH_VECNOTIRQ to at least flag
+ the architectures that have this issue and to (at least) avoid doing
+ something too wrong.
+ * drivers/can.c: Fix a test for buffer full in the generic, "upper half",
+ can driver.