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

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

[avr-libc-commit] [2204] Fix wrong vector table size for ATmega168A devi


From: Joerg Wunsch
Subject: [avr-libc-commit] [2204] Fix wrong vector table size for ATmega168A devices.
Date: Wed, 09 Feb 2011 20:52:37 +0000

Revision: 2204
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2204
Author:   joerg_wunsch
Date:     2011-02-09 20:52:37 +0000 (Wed, 09 Feb 2011)
Log Message:
-----------
Fix wrong vector table size for ATmega168A devices.

Modified Paths:
--------------
    trunk/avr-libc/NEWS
    trunk/avr-libc/include/avr/iomx8.h

Modified: trunk/avr-libc/NEWS
===================================================================
--- trunk/avr-libc/NEWS 2011-02-09 20:49:47 UTC (rev 2203)
+++ trunk/avr-libc/NEWS 2011-02-09 20:52:37 UTC (rev 2204)
@@ -5,6 +5,7 @@
   [Atmel: #11793] XMEGA A devices: 4096-cycle DAC refresh interval setting has 
wrong name
   [Atmel: #12314] Hi-Res(CTRLA) and AWex (FDEMASK)
   [Atmel: #12536] Remove CALCTRL in xmega header files.
+  [no-id] Fix wrong vector table size for ATmega168A devices.
   [#29235] power.h - warning: comma at end of enumerator list
   [#30783] Missing prototype in power.h
   [#31270] Stale link to Philips (now NXP) I2C specification/users manual

Modified: trunk/avr-libc/include/avr/iomx8.h
===================================================================
--- trunk/avr-libc/include/avr/iomx8.h  2011-02-09 20:49:47 UTC (rev 2203)
+++ trunk/avr-libc/include/avr/iomx8.h  2011-02-09 20:52:37 UTC (rev 2204)
@@ -726,7 +726,7 @@
    per entry for an RJMP) while the mega168 table has double instruction
    entries (32 bits per entry for a JMP). */
 
-#if defined (__AVR_ATmega168__)
+#if defined (__AVR_ATmega168__) || defined (__AVR_ATmega168A__)
 #  define _VECTORS_SIZE 104
 #else
 #  define _VECTORS_SIZE 52




reply via email to

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