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

SoftwareSerial not working on rel 1.8.0 #895

Closed
pacman1945 opened this issue Jan 29, 2020 · 2 comments
Closed

SoftwareSerial not working on rel 1.8.0 #895

pacman1945 opened this issue Jan 29, 2020 · 2 comments

Comments

@pacman1945
Copy link

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);
}
@stas2z
Copy link
Contributor

stas2z commented Jan 29, 2020

I can assume it's related to #841

@pacman1945
Copy link
Author

@stas2z, thanks for the link. This is indeed the same problem. I've tested the patch and it's working fine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants