Created
August 17, 2014 20:30
-
-
Save amcjen/b1934b24c4ab001d01df 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
#if defined(__AVR_ATmega256RFR2__) | |
inline static void initSS() { DDRB |= _BV(0); }; | |
inline static void setSS() { PORTB &= ~_BV(0); }; | |
inline static void resetSS() { PORTB |= _BV(0); }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment