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
Quote from: PaulUK_DE on February 17, 2026, 12:52:09 AMHowever, when I try to use the current nightly build of the toolchain, running the openFPGALoad command is still not working. It appears to run but the FPGA does not to be configured.