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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
1.5.2 (2022-09-22)
Change hashDjb2(const char*) to be an inlined function instead of
simply delegating to the template version.
Increases type-safety because passing an incorrect array (e.g. uint16_t[]) would compile without any errors, and probably not what
the user intended since the hash function expects a NUL-terminated
string.
Mark PrintStr::flush() as override.
The STM32 and ESP32 platforms have finally fixed their implementation
of Print::flush() to be virtual, consistent with other Arduino
platforms.
Make exception for ATTinyCore, which does not implement a Print::flush().