HardwareSerial Serial1(PA10, PA9);
void setup() {
// put your setup code here, to run once:
Serial1.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial1.println("Hello, STM32aaa!");
delay(1000); // this speeds up the simulation
}