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 |
685 | killagreg | 21 | #define ROT_OFF {if(BoardRelease == 10) PORTB &=~0x01; else PORTB |= 0x01;} |
22 | #define ROT_ON {if(BoardRelease == 10) PORTB |= 0x01; else PORTB &=~0x01;} |
||
1 | ingob | 23 | #define ROT_FLASH PORTB ^= 0x01 |
683 | killagreg | 24 | #define GRN_OFF PORTB &=~0x02 |
25 | #define GRN_ON PORTB |= 0x02 |
||
173 | holgerb | 26 | #define GRN_FLASH PORTB ^= 0x02 |
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 |