Subversion Repositories FlightCtrl

Rev

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

Rev 2108 Rev 2109
Line 5... Line 5...
5
 
5
 
6
#define J3HIGH    PORTD |= (1<<PORTD5)
6
#define J3HIGH    PORTD |= (1<<PORTD5)
7
#define J3LOW     PORTD &= ~(1<<PORTD5)
7
#define J3LOW     PORTD &= ~(1<<PORTD5)
Line 8... Line 8...
8
#define J3TOGGLE  PORTD ^= (1<<PORTD5)
8
#define J3TOGGLE  PORTD ^= (1<<PORTD5)
9
 
9
 
10
#define J4HIGH    PORTD |= (1<<PORTD4)
10
#define J4HIGH    PORTD |= (1<<PORTD2)
Line 11... Line 11...
11
#define J4LOW     PORTD &= ~(1<<PORTD4)
11
#define J4LOW     PORTD &= ~(1<<PORTD2)
12
#define J4TOGGLE  PORTD ^= (1<<PORTD4)
12
#define J4TOGGLE  PORTD ^= (1<<PORTD2)
13
 
13