I have a Bluetooth port (port A) with baudrate set to 9600 according to Device Manager. Within an application, a SerialPort
object is created with SerialPort.BaudRate
set to 2048 to read data transmitted via the Bluetooth module.
I would like to output received data from port A to another port (port B). However, it has to go through some signal processing, which may or may not affect the maximum baudrate. If I were to instantiate a SerialPort
object for port B, what should I set the baudrate to? Also, what should its baudrate setting be in the Device Manager?