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
When writing an arduino library, it is difficult to connect interrupt handlers with the component instance that should be notified.
In C, the common pattern to fix this is to specifying a `void*` parameter with the callback, where the listener can store any context necessary.
This patch adds the new function `attachInterruptParam()` to implement this pattern.
0 commit comments