From: Chris on
I want to communicate with a RS-422 device (SICK LIDAR)
that uses a non-standard baud rate (500Kbd). My PC has a
Quatech DSC-3200/300 that supports this rate using a UART
8X clock multiplier.

If I do a:

s = serial('COM3');
set
(s,'BaudRate',62500,'Databits',8,'Parity','none','FlowContr
ol','Hardware');
fopen(s);

I get the message "BaudRate could not be set to the
specified value"

Does anyone know how to trick MATLAB into using non-
standard baud rates?

Has anyone interfaced to a SICK LIDAR?