Does anyone know how to set non-standard baud rates. I need a baud
rate of 8192. The low level logical format of GM's 8192 baud ALDL
data stream is a simple async data stream with 8 data bits, no
parity bit, and 1 stop bit. This is the type of data stream that
most UARTs (Universal Async Receiver Transmitter) can handle. The
PC (IBM clone) has a UART that can be set close to 8192 baud
(actually 8226.6 baud, using a divisor of 14 with the 115,200
Hz UART clock - giving a 0.42 fast clock, a negligible difference).
Does anyone have any experience configuring baud rates other then
the standard COM rates using PowerBasic for DOS?
Thank you all for your help. I am using XP and still struggling to
make this work. It seems like a simple:
OPEN "COM1: 115200,D=14,N,8,1" AS #1 LEN=1 where the 14 is the divisor
or maybe something like: COM(1) /14 to set the divisor needed would be really usefull.
would be a big help.
[This message has been edited by William Haynes (edited September 22, 2005).]
rate of 8192. The low level logical format of GM's 8192 baud ALDL
data stream is a simple async data stream with 8 data bits, no
parity bit, and 1 stop bit. This is the type of data stream that
most UARTs (Universal Async Receiver Transmitter) can handle. The
PC (IBM clone) has a UART that can be set close to 8192 baud
(actually 8226.6 baud, using a divisor of 14 with the 115,200
Hz UART clock - giving a 0.42 fast clock, a negligible difference).
Does anyone have any experience configuring baud rates other then
the standard COM rates using PowerBasic for DOS?
Thank you all for your help. I am using XP and still struggling to
make this work. It seems like a simple:
OPEN "COM1: 115200,D=14,N,8,1" AS #1 LEN=1 where the 14 is the divisor
or maybe something like: COM(1) /14 to set the divisor needed would be really usefull.
would be a big help.
[This message has been edited by William Haynes (edited September 22, 2005).]
Comment