After strugling to connect to a device for the past few hours only to find that it had a "ODD" parity bit in its connection settings, I have to ask.

Why have an Odd, Even, None, parity bit?

I can understand the reason to have one of the three types (error checking) but why all three. It seems like its created just to annoy system integrators.

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

In the bad old days various pieces of hardware had these choices hardwired. So software tools had to be adaptable.

And why did different pieces of hardware do it every which way? Pure expediency. Standards don't develop without (a) a central authority from the beginning or (b) plenty of time to shake down the choices and develop consensus. Well, electronics has never had a central authority (and good riddance, distributed decision making explores more of the available design space better and smarter), and the experience needed for shaking down is gained by trying all the ways, included the wrong ones and the multiple equivalently right ones. So each engineer makes the choice that get this project done /^[fast|cheap|good]{2}$/.

Welcome to the marketplace of ideas.

link|improve this answer
feedback

Why do people in some countries drive on the left, in others on the right?

link|improve this answer
Napolean and the french revolution. The Brits didn't go along. – Byron Whitlock Sep 25 '09 at 22:16
feedback

It's just a quirk of the old serial port specifications.

In order to get two serial devices to communicate, the baud rate, parity, and stop bit settings had to all be correct. It gets worse, because there were some intricacies in the way the connections were wired together, the use of software vs hardware handshaking, DTE vs. DCE, etc.

link|improve this answer
feedback

With even parity, 0x00 and 0xFF are both valid byte values. With odd parity, they are both invalid byte values. Teletypes use even parity so that a blank paper-tape row (00) or an overpunched one (FF) will be recognized as legitimate do-nothing characters, rather than as printable characters that were misread or miscommunicated. Some synchronous protocols (including the signalling used by magnetic-stripe cards and television closed-captioning) use odd parity so that there will be at least one input transition every two byte times (in the 4+1 signalling of magstripe cards, e.g., the longest possible run of zeroes would be a byte of 10000 followed by a byte of 00001, for a total of eight consecutive zeroes).

link|improve this answer
feedback

There are different types of parity because different groups had their own way of doing things. It's the same reason there are multiple standards for many things.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.