-
-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
attachInterrupt implementation remarks #99
Comments
For another core (stm32duino/Arduino_Core_STM32#892 (comment)) I was making a list of possible implementations for combining a callback with and without argument. Since I thought this might be more generally, I'm reproducing the list below. Most of these things are more useful for implementations in individual cores, but the last option affects the API by using a
Of all these options, I would bed inclined to use option 5, using Alternatively, the current approach of requiring C-compatible As suggested in the original issue, I would also recommend removing the overload with a reference param since it is complicated and probably leads to hard-to-debug surprises for users. |
In this repo, some additions to
attachInterrupt
have been made to allow passing an extra argument. See https://github.com/arduino/ArduinoCore-API/blob/master/api/Interrupts.h#L19-L34I have a few remarks/questions about his:
attachInterrupt
already skips the wrapper lambda and dynamic memory, it is just other types that need it. Technically, the wrapper lambda and container only serve to convert a pointer to a reference argument, which I suspect is actually a no-op on most architectures (but that's probably hard to guarantee...).AFAICS the API repo providesUpdate: Seems that only a C++ overload forattachInterrupt()
and the underlying core providesattachInterruptParam
. However, theattachInterrupt()
method now accepts a parameter, so the naming distinction is weird. I guess the distinction is really between the sketch-visibleattachInterrupt()
API and the internal API-to-coreattachInterruptParam()
API. So perhaps the latter should be renamed toattachInterruptInternal()
or something similar? There might be other APIs where something like this also happens that could benefit from a clear naming convention as well.attachInterrupt
with param is implemented, so a core needs to implement both with and without param versions. Also,attachInterruptParam()
should probably be user-visible, to allow using it from within C code.attachInterrupt()
without the extra parameter defined here, so I assume the core is expected to define that directly? For consistency, it might be better to have all sketch-visible versions defined here, and define only "Internal" versions in the core (whereattachInterrupt()
without the extra param defined here will then simply call the equivalent internal version without adding anything). Alternatively, the core could define only a param version which is then used without the non-param version, but that either requires an extra wrapper lambda (passing the original function in the extra param) resulting in extra runtime delay, or passing a param to a function that does not accept it (which is probably acceptable on register-based architectures, but cannot be guaranteed everywhere. There has been some discussion about this in Support extra parameter onattachInterrupt()
ArduinoCore-avr#58 and Support extra parameter onattachInterrupt()
Arduino#4519). So perhaps the current approach (letting the core define both a param and param-less version) is actually the best, since then the core can decide to handle both in the same way if acceptable on that architecture, or store the validity of the argument separately if needed).The text was updated successfully, but these errors were encountered: