Skip to content

Instantly share code, notes, and snippets.

@NearLinHere
Last active August 29, 2015 14:14
Show Gist options
  • Save NearLinHere/62f5f6cd48ecb2b6db00 to your computer and use it in GitHub Desktop.
Save NearLinHere/62f5f6cd48ecb2b6db00 to your computer and use it in GitHub Desktop.
PORTC |= (1 << 0); // Set bit 0 only
PORTC &= ~(1 << 1); // Clear bit 1 only
PORTC ^= (1 << 4); // Toggle bit 4 only.
PORTC |= (1 << 7); // Set bit 7 only.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment