Hi,
I'm using Arduino BLE 33 in a project where I'm connecting the UART to an other external module which supports non standard baud rates like 307200 and 1000000 as the fastest possible data rates.
The module works well if I use TeraTerm set to a 307200 baud rate but on Arduino Nano 33 BLE, using Serial1.begin(307200) doesn't seem to work and characters are not properly interpreted.
My impression is that it's a software issue related to the fact that non standard values are not mapped properly by the Serial.begin() function to the register values required by the Nordic CPU in this Arduino module.
Does anyone know how to deal with these particular values of baud rates on Arduino BLE 33?
Thanks a lot!