avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2237] 2011-05-09 Eric B.


From: Eric Weddington
Subject: [avr-libc-commit] [2237] 2011-05-09 Eric B.
Date: Mon, 09 May 2011 16:34:42 +0000

Revision: 2237
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2237
Author:   arcanum
Date:     2011-05-09 16:34:41 +0000 (Mon, 09 May 2011)
Log Message:
-----------
2011-05-09  Eric B. Weddington  <address@hidden>

        Fix for bug #33238.
        * include/avr/iom8u2.h: Fix _VECTORS_SIZE value.
        * include/avr/iom16u2.h: Same.
        * include/avr/iom32u2.h: Same.
        * NEWS: Add to fixed bug list.

Ticket Links:
------------
    http://savannah.gnu.org/bugs/?33238

Modified Paths:
--------------
    trunk/avr-libc/ChangeLog
    trunk/avr-libc/NEWS
    trunk/avr-libc/include/avr/iom16u2.h
    trunk/avr-libc/include/avr/iom32u2.h
    trunk/avr-libc/include/avr/iom8u2.h

Modified: trunk/avr-libc/ChangeLog
===================================================================
--- trunk/avr-libc/ChangeLog    2011-03-17 21:53:39 UTC (rev 2236)
+++ trunk/avr-libc/ChangeLog    2011-05-09 16:34:41 UTC (rev 2237)
@@ -1,3 +1,11 @@
+2011-05-09  Eric B. Weddington  <address@hidden>
+
+       Fix for bug #33238.
+       * include/avr/iom8u2.h: Fix _VECTORS_SIZE value.
+       * include/avr/iom16u2.h: Same.
+       * include/avr/iom32u2.h: Same.
+       * NEWS: Add to fixed bug list.
+
 2011-03-17  Eric B. Weddington  <address@hidden>
 
        * include/avr/iotn11.h: Poison deprecated items.

Modified: trunk/avr-libc/NEWS
===================================================================
--- trunk/avr-libc/NEWS 2011-03-17 21:53:39 UTC (rev 2236)
+++ trunk/avr-libc/NEWS 2011-05-09 16:34:41 UTC (rev 2237)
@@ -7,7 +7,8 @@
   [#24861] Interrupt documentation contains extra include
   [#32103] Support for Target-Triplets
   [#32419] Incorrect EEPROM size in header for ATxmega192A3
-  [#32698] power.h has additional endif that will break the build 
+  [#32698] power.h has additional endif that will break the build
+  [#33238] Wrong _VECTORS_SIZE for mega8U2 et al
   system when power_all_disable() is used
 
 * New devices supported:

Modified: trunk/avr-libc/include/avr/iom16u2.h
===================================================================
--- trunk/avr-libc/include/avr/iom16u2.h        2011-03-17 21:53:39 UTC (rev 
2236)
+++ trunk/avr-libc/include/avr/iom16u2.h        2011-05-09 16:34:41 UTC (rev 
2237)
@@ -914,7 +914,7 @@
 #define TIMER1_OVF_vect      _VECTOR(18)  /* Timer/Counter1 Overflow */
 
 #define _VECTOR_SIZE 4 /* Size of individual vector. */
-#define _VECTORS_SIZE (38 * _VECTOR_SIZE)
+#define _VECTORS_SIZE (28 * _VECTOR_SIZE)
 
 
 /* Constants */

Modified: trunk/avr-libc/include/avr/iom32u2.h
===================================================================
--- trunk/avr-libc/include/avr/iom32u2.h        2011-03-17 21:53:39 UTC (rev 
2236)
+++ trunk/avr-libc/include/avr/iom32u2.h        2011-05-09 16:34:41 UTC (rev 
2237)
@@ -914,7 +914,7 @@
 #define TIMER1_OVF_vect      _VECTOR(18)  /* Timer/Counter1 Overflow */
 
 #define _VECTOR_SIZE 4 /* Size of individual vector. */
-#define _VECTORS_SIZE (38 * _VECTOR_SIZE)
+#define _VECTORS_SIZE (28 * _VECTOR_SIZE)
 
 
 /* Constants */

Modified: trunk/avr-libc/include/avr/iom8u2.h
===================================================================
--- trunk/avr-libc/include/avr/iom8u2.h 2011-03-17 21:53:39 UTC (rev 2236)
+++ trunk/avr-libc/include/avr/iom8u2.h 2011-05-09 16:34:41 UTC (rev 2237)
@@ -901,7 +901,7 @@
 #define TIMER1_OVF_vect      _VECTOR(18)  /* Timer/Counter1 Overflow */
 
 #define _VECTOR_SIZE 4 /* Size of individual vector. */
-#define _VECTORS_SIZE (38 * _VECTOR_SIZE)
+#define _VECTORS_SIZE (28 * _VECTOR_SIZE)
 
 
 /* Constants */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]