Skip to content
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

Merged
merged 4 commits into from
Mar 2, 2022

Conversation

SuGlider
Copy link
Collaborator

@SuGlider SuGlider commented Mar 1, 2022

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():

  Serial.onReceive([]() {
    Serial.println("Got data!");
    while (Serial.available()) {
      Serial.write(Serial.read());
    }
    Serial.println();
  });

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

@SuGlider SuGlider added the Area: Peripherals API Relates to peripheral's APIs. label Mar 1, 2022
@SuGlider SuGlider added this to the 2.0.3 milestone Mar 1, 2022
@SuGlider SuGlider self-assigned this Mar 1, 2022
@SuGlider
Copy link
Collaborator Author

SuGlider commented Mar 1, 2022

@VojtechBartoska - I still can't add any issue/PR to the new project model.

@SuGlider
Copy link
Collaborator Author

SuGlider commented Mar 1, 2022

@gonzabrusco
Feel free to review it as well, if you want to do so.

@SuGlider SuGlider requested a review from PilnyTomas March 1, 2022 23:17
@Jason2866
Copy link
Collaborator

@SuGlider Compile fails when CONFIG_DISABLE_HAL_LOCKS=y is set in sdkconfig

HardwareSerial::onReceiveError(OnReceiveErrorCb)':
/home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/components/arduino/cores/esp32/HardwareSerial.cpp:176:5: error: 'HSERIAL_MUTEX_LOCK' was not declared in this scope
     HSERIAL_MUTEX_LOCK();
     ^~~~~~~~~~~~~~~~~~

@SuGlider
Copy link
Collaborator Author

SuGlider commented Mar 2, 2022

@SuGlider Compile fails when CONFIG_DISABLE_HAL_LOCKS=y is set in sdkconfig

Thanks @Jason2866 !
I just sent a commit to fix it and tested it. It shall be fine by now.

@Jason2866
Copy link
Collaborator

Confirmed CONFIG_DISABLE_HAL_LOCKS=y does compile now.

@me-no-dev me-no-dev merged commit 7d4992a into espressif:master Mar 2, 2022
@gonzabrusco
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: Peripherals API Relates to peripheral's APIs.
Projects
4 participants