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
I am having a Platformio build error with a library (ArduinoECCX08).
This is because it calls:
while (_wire->requestFrom((uint8_t)_address, (size_t)responseSize, (bool)true) != responseSize && retries--);
Where it s casting the sendStop paramater as a boolean, the compiler fails saying that it is ambiguous. The core does not appear to have the Arduino specific function as found here --> Link
Describe the solution you'd like
Implement a handler that better aligns with the arduino specfification --> Docs
Are there any guides I need to follow to implement a PR for this repo?