From 0ada80fc7687dd26ade7e381c1836d5dc0972dd0 Mon Sep 17 00:00:00 2001 From: Quentin Smart Date: Sat, 21 Jun 2014 12:17:00 +1200 Subject: [PATCH] ATMEGA2560 is case sensitive --- gpio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpio.h b/gpio.h index 437b996..73b1ad1 100755 --- a/gpio.h +++ b/gpio.h @@ -70,7 +70,7 @@ typedef Port PortB; typedef Port PortC; typedef Port 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);