-
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 HardwareSerial::setTxBufferSize() #6383
Conversation
Thanks @gonzabrusco ! |
@gonzabrusco - This is a nice improvement! Thanks!
Based on your PR, this is exactly the intended behaviour. |
Found an issue when running the PR with an example.
I just tested it with the example below and I got ASSERT error. void setup() {
Serial.setTxBufferSize(64);
Serial.begin(115200);
}
void loop() {
} Error message with the ESP32-S2:
|
Makes sure that the buffer size will not cause a reset to the board.
Keeps Rx/Tx buffer size as set, not doubling it. It makes the process more clear.
@gonzabrusco - already commited necessary changes to the code. |
Thanks @SuGlider !! I was about to check the error and noticed you were working on it (because of the commit after the comment). Thanks for helping me push this pull request (my first by the way!). I appreciate you removed the double buffer thing. I did not undestand that decision but I kept it like that because I thought that was an "Espressif thing". But now for me it makes perfect sense. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added 2 commits to comply with IDF requirements and avoid the issue commented in this PR.
Thanks! Congratulations for your first PR! |
@me-no-dev - I have fininshed my review. |
Summary
It adds HardwareSerial::setTxBufferSize() with default value of 0 bytes (like it is now by default).
No issue related. Just adds functionality to HardwareSerial. Allows non blocking writes when they exceed the TX FIFO.
Impact
None.
Related links
It allows to define a Tx Buffer Size for UART, before begin().