blob: a2d3adf8e37896218427df5cc450f95c4424d4ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|