aboutsummaryrefslogtreecommitdiff
path: root/mcu/ATmega8A.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-10-08 20:59:26 +0200
committerKarel Kočí <cynerd@email.cz>2015-10-08 20:59:26 +0200
commitacdd758e56e28f22846e7d34d87f5533c8682574 (patch)
treed8fda0b554e99d6ace98a9300ecb5835b5bf50e0 /mcu/ATmega8A.h
parent0b534d81ac39eb5bbf2b9a0691519f6f7f0eaa13 (diff)
downloadavr-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/ATmega8A.h')
-rw-r--r--mcu/ATmega8A.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/mcu/ATmega8A.h b/mcu/ATmega8A.h
index 1ded665..a2d3adf 100644
--- a/mcu/ATmega8A.h
+++ b/mcu/ATmega8A.h
@@ -3,6 +3,7 @@
#include <avr/io.h>
// SPI
+#define MCUSUPPORT_SPI
#define DDR_SPI DDRB
#define DD_SS DDB2
#define DD_SCLK DDB5
@@ -13,3 +14,5 @@
#define PORT_SCLK PORTB5
#define PORT_MOSI PORTB3
#define PORT_MISO PORTB4
+// USART
+#define MCUSUPPORT_USART0