Skip to content

Instantly share code, notes, and snippets.

@mroger
Created August 23, 2014 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mroger/f8f2a1331ebeb6587f12 to your computer and use it in GitHub Desktop.
Save mroger/f8f2a1331ebeb6587f12 to your computer and use it in GitHub Desktop.
Methods that set up and down search direction
void TEA5767N::setSearchUp() {
transmission_data[THIRD_DATA] |= 0b10000000;
}
void TEA5767N::setSearchDown() {
transmission_data[THIRD_DATA] &= 0b01111111;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment