Skip to content

Commit

Permalink
Merge pull request pichenettes#7 from sm3rt/master
Browse files Browse the repository at this point in the history
ATMEGA2560 is case sensitive
  • Loading branch information
olivier gillet committed Jun 21, 2014
2 parents af5c6c1 + 0ada80f commit 224eb18
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) || defined(ATmega2560)
#if defined(ATMEGA164P) || defined(ATMEGA324P) || defined(ATMEGA644P) || defined(ATMEGA1284P) || defined(ATMEGA2560)

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

0 comments on commit 224eb18

Please sign in to comment.