Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
231 killagreg 1
#ifndef _MAIN_H
2
#define _MAIN_H
3
 
4
#include <avr/io.h>
5
 
6
/*
7
#if defined (__AVR_ATmega644P__)
8
#define SYSCLK  20000000L       //crystal freqency in Hz
9
#endif
10
*/
11
 
12
#define SYSCLK F_CPU
13
 
14
 
15
#endif //_MAIN_H
16
 
17
 
18
 
19
 
20
 
21