Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav-Korenevsky committed Jun 17, 2024
1 parent 17936ea commit df495a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bootloaders/ariadne/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
6 changes: 3 additions & 3 deletions bootloaders/ariadne/src/spi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit df495a8

Please sign in to comment.