I am trying to convert from ms per int to Hertz.
I have found that my system takes 0.2313ms to transfer one 32 bit interger.
Based on this answer Difference between Hz and bps
I have divided my answer by 1000 (to converted for milliseconds to seconds) then divided by 32 (to convert from int to bit) and then taking the inverse of the resulting number (to get Hertz).
The final answer that I got - 138.34kHz seems to much higher than I was expecting. Have I made a mistake or misunderstood something?