I am initializing SPI with this command
spi = SPI(2, SPI.MASTER, baudrate=115200, polarity=0, phase=1)
After that I print it
print(spi)
The results I get are:
SPI(2, SPI.MASTER, baudrate=625000, prescaler=256, polarity=0, phase=1, bits=8)
Why is the baudrate not set by the function call to SPI. Which baudrate values are supported by OpenMV