aboutsummaryrefslogtreecommitdiff
path: root/include/mcu/atmega8a.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mcu/atmega8a.h')
-rw-r--r--include/mcu/atmega8a.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/mcu/atmega8a.h b/include/mcu/atmega8a.h
new file mode 100644
index 0000000..a2d3adf
--- /dev/null
+++ b/include/mcu/atmega8a.h
@@ -0,0 +1,18 @@
+/* This is specific configuration for ATmega8A.
+ */
+#include <avr/io.h>
+
+// SPI
+#define MCUSUPPORT_SPI
+#define DDR_SPI DDRB
+#define DD_SS DDB2
+#define DD_SCLK DDB5
+#define DD_MOSI DDB3
+#define DD_MISO DDB4
+#define PORT_SPI PORTB
+#define PORT_SS PORTB2
+#define PORT_SCLK PORTB5
+#define PORT_MOSI PORTB3
+#define PORT_MISO PORTB4
+// USART
+#define MCUSUPPORT_USART0