diff --git a/bootloaders/ariadne/src/main.c b/bootloaders/ariadne/src/main.c index 69129fe..d802ebb 100644 --- a/bootloaders/ariadne/src/main.c +++ b/bootloaders/ariadne/src/main.c @@ -141,8 +141,8 @@ int main(void) } wdt_reset(); /* Blink the notification led */ - wdt_reset(); //Required so it doesn`t hang. - updateLed(); + // wdt_reset(); //Required so it doesn`t hang. + // updateLed(); } /* Exit to user application */ diff --git a/bootloaders/ariadne/src/spi.h b/bootloaders/ariadne/src/spi.h index d81679f..75ec112 100644 --- a/bootloaders/ariadne/src/spi.h +++ b/bootloaders/ariadne/src/spi.h @@ -39,13 +39,13 @@ #define SS PINB0 //Pin 53 /** Ethernet Shield SS pin */ #define ETH_DDR DDRB - #define ETH_PORT PORTB - #define ETH_SS PINB4 //Pin 10 + #define ETH_PORT PORTJ + #define ETH_SS PINJ3 /** SD card SS pin */ #define SD_DDR DDRG #define SD_PORT PORTG #define SD_SS PING5 //Pin 04 - /** Onboard LED is connected to pin PB7 on Arduino Mega */ + /** Onboard LED */ #define LED_DDR DDRB #define LED_PORT PORTB #define LED PINB7