Created
August 17, 2014 20:51
-
-
Save amcjen/e37d45913109ba26539f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#elif defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB162__) | |
inline static void initSS() { pinMode(SS, OUTPUT); }; | |
inline static void setSS() { digitalWrite(SS, LOW); }; | |
inline static void resetSS() { digitalWrite(SS, HIGH); }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment