-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
add Serial rx callback function #467
Conversation
example: //return false drop char, bool rxcap(char ch) { if (ch == '1') { //if get char '1' Serial.println("callback!"); Serial.setRxCallBack(0); //disable CallBack return false; //del char '1' from rx buff } return true; } void setup() { Serial.begin(115200); Serial.setRxCallBack(rxcap); } void loop() { while(Serial.available()) Serial.write(Serial.read()); } ~
Memory usage change @ e2a9e7f
Click for full report table
Click for full report CSV
|
This function can perform real-time operations, such as xon/xoff, |
See also arduino/ArduinoCore-API#160 for some discussion on adding such a callback to the API more broadly. |
This example code calls Serial.print() from within the callback, which unintentionally illustrates the main reason why callbacks directly from interrupts are not a good design for the Arduino API. I'm not against callback. In fact, I want to see this API. But it really should be done in another way where the interrupt merely sets a flag or other mechanism for the callback to happen later, from main program context (eg, made from yield or an RTOS mechanism). |
example:
~