aboutsummaryrefslogtreecommitdiff
path: root/mcu/ATmega8A.h
diff options
context:
space:
mode:
Diffstat (limited to 'mcu/ATmega8A.h')
-rw-r--r--mcu/ATmega8A.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcu/ATmega8A.h b/mcu/ATmega8A.h
deleted file mode 100644
index a2d3adf..0000000
--- a/mcu/ATmega8A.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/* 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