diff options
author | Karel Kočí <cynerd@email.cz> | 2015-10-08 20:59:26 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-10-08 20:59:26 +0200 |
commit | acdd758e56e28f22846e7d34d87f5533c8682574 (patch) | |
tree | d8fda0b554e99d6ace98a9300ecb5835b5bf50e0 /mcu/ATmega32U4.h | |
parent | 0b534d81ac39eb5bbf2b9a0691519f6f7f0eaa13 (diff) | |
download | avr-ioe-acdd758e56e28f22846e7d34d87f5533c8682574.tar.gz avr-ioe-acdd758e56e28f22846e7d34d87f5533c8682574.tar.bz2 avr-ioe-acdd758e56e28f22846e7d34d87f5533c8682574.zip |
Add implementation of USART and more ground changes
Diffstat (limited to 'mcu/ATmega32U4.h')
-rw-r--r-- | mcu/ATmega32U4.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mcu/ATmega32U4.h b/mcu/ATmega32U4.h index acf3a24..16351e8 100644 --- a/mcu/ATmega32U4.h +++ b/mcu/ATmega32U4.h @@ -4,6 +4,7 @@ #include <avr/io.h> // SPI +#define MCUSUPPORT_SPI #define DDR_SPI DDRB #define DD_SS DDB0 #define DD_SCLK DDB1 @@ -14,3 +15,5 @@ #define PORT_SCLK PORTB1 #define PORT_MOSI PORTB2 #define PORT_MISO PORTB3 +// USART +#define MCUSUPPORT_USART0 |