You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like digitalWriteFast (in Arduino.h) has some cut&paste errors, for example:
if (val == LOW) {
*out &= ~mask; // 1/1
} else { // 1/1
*out &= ~mask; // 1/1
} // and we know which one at compile time, so
This causes it to always set the pin LOW, regardless of arguments.
See (by .lst file inspection) on t85 and t84, but it looks like even more are broken.)
The text was updated successfully, but these errors were encountered:
It looks like digitalWriteFast (in Arduino.h) has some cut&paste errors, for example:
This causes it to always set the pin LOW, regardless of arguments.
See (by .lst file inspection) on t85 and t84, but it looks like even more are broken.)
The text was updated successfully, but these errors were encountered: