-
|
Describe the bug To Reproduce void setup() {
// Initialize USB Serial
Serial.begin(115200);
while (!Serial) {
}
Serial.println("Echo");
}
void loop() {
if (Serial.available()) {
char c = Serial.read(); // Read a character
Serial.print(c); // Echo it back
}
}Steps to reproduce the behavior: **Expected behavior: Desktop (please complete the following information):
Board:
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
|
Hi @housey2k |
Beta Was this translation helpful? Give feedback.
-
STM32 Bluepill, as stated in the post |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue. It works perfectly fine with Roger's STM32Duino core. Please let me know if you find any workaround. |
Beta Was this translation helpful? Give feedback.
-
|
I've tested with a BluePill STM32F103C8 and your sketch works as expected:
So, I guess it is not a genuine STM32. |
Beta Was this translation helpful? Give feedback.

I've tested with a BluePill STM32F103C8 and your sketch works as expected:
So, I guess it is not a genuine STM32.