]> git.cryptolib.org Git - avr-crypto-lib.git/blob - config.h
new, derived from old avr/crypto + cast5
[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 //c uart.[ch] defines
10 #define UART_INTERRUPT 1
11 #define UART_BAUD_RATE 2400
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 #endif
27