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
Currently MegaAVR is one of the very few platforms where digitalWrite doesn't take a boolean for digitalWrite (there's no digitalWrite(uint8_t pin, bool val)), this causes unnecessary incompatibility with a massive selection of libraries out there.
The function's signature should either be changed or the core should overload the function.
The text was updated successfully, but these errors were encountered:
So does attachInterrupt and, as usual, there's no actual signature in the docs, just the usual Arduino noob stuff. Usable ISO/IEC style docs would be nice but I guess that would confuse people who think everything should be type 'int'.
Currently MegaAVR is one of the very few platforms where digitalWrite doesn't take a boolean for
digitalWrite
(there's nodigitalWrite(uint8_t pin, bool val)
), this causes unnecessary incompatibility with a massive selection of libraries out there.The function's signature should either be changed or the core should overload the function.
The text was updated successfully, but these errors were encountered: