Subversion Repositories FlightCtrl

Rev

Rev 1638 | Rev 1680 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1638 Rev 1662
Line 4... Line 4...
4
//#define DEBUG                                                 // use to activate debug output to MK-Tool: use Debug(text);
4
//#define DEBUG                                                 // use to activate debug output to MK-Tool: use Debug(text);
Line 5... Line 5...
5
 
5
 
Line 6... Line 6...
6
//#define ACT_S3D_SUMMENSIGNAL
6
//#define ACT_S3D_SUMMENSIGNAL
7
 
7
 
8
// neue Hardware
8
// neue Hardware
9
#define ROT_OFF   {if((PlatinenVersion == 10)||(PlatinenVersion == 20)) PORTB &=~0x01; else  PORTB |= 0x01;}
9
#define ROT_OFF   {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB &=~0x01; else  PORTB |= 0x01;}
10
#define ROT_ON    {if((PlatinenVersion == 10)||(PlatinenVersion == 20)) PORTB |= 0x01; else  PORTB &=~0x01;}
10
#define ROT_ON    {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB |= 0x01; else  PORTB &=~0x01;}
11
#define ROT_FLASH PORTB ^= 0x01
11
#define ROT_FLASH PORTB ^= 0x01
12
#define GRN_OFF   {if((PlatinenVersion < 12)) PORTB &=~0x02; else PORTB |= 0x02;}
12
#define GRN_OFF   {if((PlatinenVersion < 12)) PORTB &=~0x02; else PORTB |= 0x02;}