Subversion Repositories FlightCtrl

Rev

Rev 712 | Go to most recent revision | Details | Compare with Previous | 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
 
750 killagreg 28
#define J16_ON   PORTC |=  (1<<PORTC2)
29
#define J16_OFF  PORTC &= ~(1<<PORTC2)
30
#define J17_ON   PORTC |=  (1<<PORTC3)
31
#define J17_OFF  PORTC &= ~(1<<PORTC3)
597 ingob 32
 
687 killagreg 33
#include <inttypes.h>
513 hbuss 34
 
685 killagreg 35
extern uint8_t BoardRelease;
1 ingob 36
 
37
#endif //_MAIN_H
38
 
39
 
40
 
41
 
42
 
43