You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using SoftwareSerial on Bluepill (STM32F103C8) & STM32F031K6. Both boards are working fine under Core rel 1.7.0. After upgrading to rel 1.8.0, SoftwareSerial stopped working on these 2 boards.
The following simple sketch can demonstrate the SoftwareSerial problem on rel 1.8.0. The same sketch worked fine on rel 1.7.0.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(PA10, PA9); // RX, TX
void setup() {
mySerial.begin(38400);
mySerial.println("Hello world");
}
void loop() { // run over and over
mySerial.println("11223344556677889900 11223344556677889900 11223344556677889900");
delay(1000);
}
The text was updated successfully, but these errors were encountered:
I'm using SoftwareSerial on Bluepill (STM32F103C8) & STM32F031K6. Both boards are working fine under Core rel 1.7.0. After upgrading to rel 1.8.0, SoftwareSerial stopped working on these 2 boards.
The following simple sketch can demonstrate the SoftwareSerial problem on rel 1.8.0. The same sketch worked fine on rel 1.7.0.
The text was updated successfully, but these errors were encountered: