aboutsummaryrefslogtreecommitdiff
path: root/mcu/ATtiny4313.h
diff options
context:
space:
mode:
Diffstat (limited to 'mcu/ATtiny4313.h')
-rw-r--r--mcu/ATtiny4313.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcu/ATtiny4313.h b/mcu/ATtiny4313.h
deleted file mode 100644
index efbc01d..0000000
--- a/mcu/ATtiny4313.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* This is specific configuration for ATtiny4313.
- * This configuration also applies on ATtiny2313A.
- */
-#include <avr/io.h>
-
-// SPI USI
-#define MCUSUPPORT_USI
-#define DDR_USI DDRB
-#define DD_DI DDB5
-#define DD_DO DDB6
-#define DD_USCK DDB7
-#define PORT_USI PORTB
-#define PORT_DI PORTB5
-#define PORT_DO PORTB6
-#define PORT_USCK PORTB7
-// USART
-#define MCUSUPPORT_USART0