diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-02 11:31:37 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-02 11:31:37 +0200 |
commit | 4e39af4195506e746048d5ad48ea91692b0173b5 (patch) | |
tree | a46cc7f3a621ad4ecca7ec31c68d450d1d48c751 /mcu/mcu_def.h | |
parent | 028c7f8c571ea2d9ad1910b196a8788d06dcc203 (diff) | |
download | avr-ioe-4e39af4195506e746048d5ad48ea91692b0173b5.tar.gz avr-ioe-4e39af4195506e746048d5ad48ea91692b0173b5.tar.bz2 avr-ioe-4e39af4195506e746048d5ad48ea91692b0173b5.zip |
Add support for ATmega8A
Diffstat (limited to 'mcu/mcu_def.h')
-rw-r--r-- | mcu/mcu_def.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mcu/mcu_def.h b/mcu/mcu_def.h index b423a77..51b70fe 100644 --- a/mcu/mcu_def.h +++ b/mcu/mcu_def.h @@ -8,6 +8,10 @@ #include "ATmega32U4.h" #endif +#if __MCU_ATmega8A__ +#include "ATmega8A.h" +#endif + #if __MCU_ATtiny4313__ #include "ATtiny4313.h" #endif |