We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm just writing this for clarity, In pwmOnAnyPin.c, In the initTimer0(void) function, there's this line
TIMSK0 |= ((1 << OCIE0A) | (1 << OCIE1B));
I think it is OCIE0B not OCIE1B I don't think it affect the exicution of code, both means (1 << 2)
OCIE0B
OCIE1B
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm just writing this for clarity, In pwmOnAnyPin.c, In the initTimer0(void) function, there's this line
TIMSK0 |= ((1 << OCIE0A) | (1 << OCIE1B));
I think it is
OCIE0B
notOCIE1B
I don't think it affect the exicution of code, both means (1 << 2)
The text was updated successfully, but these errors were encountered: