We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
https://github.com/stm32duino/Arduino_Core_STM32/blob/master/variants/NUCLEO_F091RC/variant.cpp#L111-L112 is an example however it appears that is a problem in multiple variant.cpp files.
void serialEventRun(void) { if (Serial.available()) serialEvent(); if (Serial1.available()) serialEvent(); if (Serial2.available()) serialEvent(); }
This should probably be
void serialEventRun(void) { if (Serial.available()) serialEvent(); if (Serial1.available()) serialEvent1(); if (Serial2.available()) serialEvent2(); }
The text was updated successfully, but these errors were encountered:
b30145b
Just put this;
in loop or whatever your function is,
if (Serial.available>()) serialEvent();
Sorry, something went wrong.
fpistm
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
https://github.com/stm32duino/Arduino_Core_STM32/blob/master/variants/NUCLEO_F091RC/variant.cpp#L111-L112 is an example however it appears that is a problem in multiple variant.cpp files.
This should probably be
The text was updated successfully, but these errors were encountered: