; -DSERIAL_UART_INSTANCE=1 ...
-i GPIO_string GPIO sequence to enter/exit bootloader mode
GPIO_string=[entry_seq][:[exit_seq]]
sequence=[-]n[,sequence]
-R Reset device at exit.
...
void setup()
{
Serial1.begin(115200);
}
void loop()
{
Serial1.println("USART1 on PA9/PA10 working");
delay(1000);
}HardwareSerial SerialPort(PA10, PA9); // RX, TX
void setup()
{
SerialPort.begin(115200);
}
void loop()
{
SerialPort.println("Forced USART1 mapping");
delay(1000);
}Quote from: Stokpan on February 17, 2026, 10:07:53 PMThat confirms my own experience as well. The openFPGALoader.exe build from the legacy cc-toolchain-win works, the new one from OSS CAD Suite doesn't.
I've filed a bug report: https://github.com/trabucayre/openFPGALoader/issues/628