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
In case using an own pins_arduino.h for the ATtiny861 the compile stops in Tone.cpp.
This can be avoided adding an additional "#if defined" statement which catches the case of undefined WGM01:
Tone.cpp line 154:
->
The text was updated successfully, but these errors were encountered:
Is there any support to this microcontroller?? https://code.google.com/p/arduino-tiny/issues/detail?id=64
Sorry, something went wrong.
adding the above mentioned would allow to compile the sketch for the attiny861/461/261 using arduino ide 1.6.x:
damellis/attiny#18
Closed by merging #2972
No branches or pull requests
In case using an own pins_arduino.h for the ATtiny861 the compile stops in Tone.cpp.
This can be avoided adding an additional "#if defined" statement which catches the case of undefined WGM01:
Tone.cpp line 154:
if defined(TCCR0A) && defined(TCCR0B)
->
if defined(TCCR0A) && defined(TCCR0B) && defined(WGM01)
The text was updated successfully, but these errors were encountered: