Article ID: 12027
Article Last Modified on 11/21/2006
OPEN "COM1:9600,E,8,1" AS 2This error disappears using 7 data bits, or No (N) parity.
"Microsoft C Programming for the IBM" by Robert Lafore (published by the Waite Group)
1 2 - 8 9 A
S DDDDDDD P S
Bit 1 = Start Bit (Always 1)
Bits 2 - 8 = Data Bits (7 or 8)
Bit 9 = Parity (Odd, Even, or None)
Bit A = Stop Bit(s) (1 or 2)
The combination of the bits should add up to 10 bits. When you try to
set 1 start + 8 data + 1 parity + 1 stop, that adds up to an 11-bit
data frame, which Basic is not designed for.
Additional query words: QuickBas BasicCom
Keywords: KB12027