Created
August 23, 2014 13:39
-
-
Save mroger/f8f2a1331ebeb6587f12 to your computer and use it in GitHub Desktop.
Methods that set up and down search direction
This file contains 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
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