-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Adds C++ std::function to Serial.onReceive() #6364
Conversation
@VojtechBartoska - I still can't add any issue/PR to the new project model. |
@gonzabrusco |
@SuGlider Compile fails when
|
Thanks @Jason2866 ! |
Confirmed |
Thanks @SuGlider, I didn't have time to check it out before merge! That was fast... One suggestion: could you make the task stack size configurable via define? Like we already have on the Arduino Loop. That way we can change it if we need more stack for our callback. See ARDUINO_LOOP_STACK_SIZE as example of what I'm talking about. |
Summary
This PR adds C++ std::function to
HardwareSerial::onReceive()
It also adds a way to get notification of UART errors using
HardwareSerial::onReceiveError()
Example of lambda function with
Serial.onReceive()
:Impact
Modernizes Arduino Serial in order to use C++ 11.
No impact on using regular C function pointers.
It Fixes FIFO and buffer Overflow issues.
It only creates necessary tasks if the sketch calls
Serial.onReceive( <void(void)> )
saving CPU time and memory.Adds a new function that is called whenever a failure happens with UART or IDF Ringbuffer -
Serial.onReceiveError( <void(hardwareSerial_error_t)> )
Related links
Fixes #6326
Fixes #6336
Resolves #6302