I am working on a project where I need the microcontroller to communicate with an IMU(Inertial Measurement Unit) via an RS232 interface. Since I am using Arduino Mega2560 the maximum baud rate is 9600 (http://www.arduino.cc/en/Reference/SoftwareSerial). But the IMU needs a minimum baud rate of 115kbps. Is there any way to increase the baud rate by using a hardware device or any other means?
I have used datarates well above the 115200 baud on a UNO, in particular 230400 and 345600 baud over the hardware serial. But be aware that the IDE cannot handle these speeds so you need putty.exe or realterm.exe (windows)
Thank you. What should be the inputs and settings in putty.exe to run this program? Also how would a file on my computer(putty.exe) affect the communication between the microcontroller and IMU?