-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Describe the bug
When using UART1 on STM32F1, TX seem to idle after every byte sent. Don't expect this idle period.
To Reproduce
Source from Arduino IDE:
void setup() {
Serial.begin(1000000);
}
void loop() {
Serial1.printf("Test");
Serial1.flush();
delay(100);
}
Expected behavior
Expect to see continuous output from TX, such as:
Screenshots
Screenshots above
Desktop (please complete the following information):
- OS: Win 10
- Arduino IDE version: 1.8.13
- STM32 core version: 1.9.0
- Tools menu settings if not the default: Default
- Upload method: Serial
Board (please complete the following information):
- Name: STM32F103C Blue Pill
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request