diff options
author | Karel Kočí <cynerd@email.cz> | 2015-03-22 14:26:37 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-03-22 14:26:37 +0100 |
commit | 710c457afeb7b8132000071468b147ab8c3f8612 (patch) | |
tree | 63b77aaa64dc9956ef8728fef6783da865d5cc36 /mcu/mcu_def.h | |
parent | 996eb9e0fc20de09af8e9a4f3427f08e72bcdb1d (diff) | |
download | avr-ioe-710c457afeb7b8132000071468b147ab8c3f8612.tar.gz avr-ioe-710c457afeb7b8132000071468b147ab8c3f8612.tar.bz2 avr-ioe-710c457afeb7b8132000071468b147ab8c3f8612.zip |
Moving mcu grouping to separate header
mcu.h is from now for mcu groups defines.
mcu_def now doing same as mcu.h previous.
Diffstat (limited to 'mcu/mcu_def.h')
-rw-r--r-- | mcu/mcu_def.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mcu/mcu_def.h b/mcu/mcu_def.h new file mode 100644 index 0000000..b423a77 --- /dev/null +++ b/mcu/mcu_def.h @@ -0,0 +1,17 @@ +#include "mcu.h" + +#if __MCU_ATmega328p__ +#include "ATmega328P.h" +#endif + +#if __MCU_ATmega32U4__ +#include "ATmega32U4.h" +#endif + +#if __MCU_ATtiny4313__ +#include "ATtiny4313.h" +#endif + +#if __MCU_ATtiny85__ +#include "ATtiny85.h" +#endif |