Skip to content

Commit

Permalink
Fix for ATTiny in IDE 1.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
TMRh20 committed Sep 7, 2014
1 parent 213ce12 commit 1b0f3c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion RF24Network_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@

// Define _BV for non-Arduino platforms and for Arduino DUE
#if defined (ARDUINO) && !defined (__arm__)
#include <SPI.h>
#if !defined(__AVR_ATtiny25__) && !defined(__AVR_ATtiny45__) && !defined(__AVR_ATtiny85__) && !defined(__AVR_ATtiny24__) && !defined(__AVR_ATtiny44__) && !defined(__AVR_ATtiny84__)
#include <SPI.h>
#endif
#else

#include <stdint.h>
Expand Down

0 comments on commit 1b0f3c9

Please sign in to comment.