Skip to content

Commit

Permalink
Allow PORTA on ATMega2560
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Smart committed Jun 14, 2014
1 parent 86c44ac commit 16bf3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ typedef Port<PINBRegister, PORTBRegister, DDRBRegister> PortB;
typedef Port<PINCRegister, PORTCRegister, DDRCRegister> PortC;
typedef Port<PINDRegister, PORTDRegister, DDRDRegister> PortD;

#if defined(ATMEGA164P) || defined(ATMEGA324P) || defined(ATMEGA644P) || defined(ATMEGA1284P)
#if defined(ATMEGA164P) || defined(ATMEGA324P) || defined(ATMEGA644P) || defined(ATMEGA1284P) || defined(ATmega2560)

IORegister(DDRA);
IORegister(PORTA);
Expand Down

0 comments on commit 16bf3b9

Please sign in to comment.