]> git.cryptolib.org Git - avr-crypto-lib.git/blob - config.h
09cbf61bb83961146737400d5cdf192736bc6394
[avr-crypto-lib.git] / config.h
1 #ifndef __CONFIG_H__
2 #define __CONFIG_H__
3 #include <avr/io.h>
4
5 #define F_CPU 16000000         /* Oszillator-Frequenz in Hz */
6
7 #define DEBUG uart
8
9 /* uart.[ch] defines */
10 #define UART_INTERRUPT 1
11 #define UART_BAUD_RATE 9600
12 #define UART_RXBUFSIZE 16
13 #define UART_TXBUFSIZE 16
14 #define UART_LINE_BUFFER_SIZE 40
15 #undef UART_LEDS
16 /*
17 #define UART_HWFLOWCONTROL
18 #define UART_RTS_PORT PORTA
19 #define UART_RTS_DDR DDRA
20 #define UART_CTS_PIN PINA
21 #define UART_CTS_DDR DDRA
22 #define UART_RTS_BIT 0
23 #define UART_CTS_BIT 1
24 */
25
26 #define ATMEGA644
27
28 #endif
29