Skip to content

Instantly share code, notes, and snippets.

@amcjen
Created August 17, 2014 20:30
Show Gist options
  • Save amcjen/b1934b24c4ab001d01df to your computer and use it in GitHub Desktop.
Save amcjen/b1934b24c4ab001d01df to your computer and use it in GitHub Desktop.
#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