Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | ingob | 1 | #ifndef _MAIN_H |
2 | #define _MAIN_H |
||
3 | |||
4 | //Hier die Quarz Frequenz einstellen |
||
5 | #if defined (__AVR_ATmega32__) |
||
6 | #define SYSCLK 20000000L //Quarz Frequenz in Hz |
||
7 | #endif |
||
8 | |||
9 | #if defined (__AVR_ATmega644__) |
||
10 | #define SYSCLK 20000000L //Quarz Frequenz in Hz |
||
11 | #endif |
||
12 | |||
683 | killagreg | 13 | #if defined (__AVR_ATmega644P__) |
14 | #define SYSCLK 20000000L //Quarz Frequenz in Hz |
||
15 | #endif |
||
16 | |||
687 | killagreg | 17 | #define F_CPU SYSCLK |
18 | |||
19 | |||
1 | ingob | 20 | // neue Hardware |
712 | killagreg | 21 | #define ROT_OFF {if(BoardRelease == 10) PORTB &=~(1<<PORTB0); else PORTB |= (1<<PORTB0);} |
22 | #define ROT_ON {if(BoardRelease == 10) PORTB |= (1<<PORTB0); else PORTB &=~(1<<PORTB0);} |
||
23 | #define ROT_FLASH PORTB ^= (1<<PORTB0) |
||
24 | #define GRN_OFF PORTB &=~(1<<PORTB1) |
||
25 | #define GRN_ON PORTB |= (1<<PORTB1) |
||
26 | #define GRN_FLASH PORTB ^= (1<<PORTB1) |
||
1 | ingob | 27 | |
597 | ingob | 28 | |
687 | killagreg | 29 | #include <inttypes.h> |
513 | hbuss | 30 | |
685 | killagreg | 31 | extern uint8_t BoardRelease; |
1 | ingob | 32 | |
33 | #endif //_MAIN_H |
||
34 | |||
35 | |||
36 | |||
37 | |||
38 | |||
39 |