I am writing a driver for a device that is connected by serial port. Unfortunately, the 9th data bit indicates whether the character should be interpreted as command or as data.

Using the built-in parity check does not work for me because an error is indicated by an additional character (NUL). And then I don't know wheter I received two data bytes or one with an parity error.

Is there a way to get this parity bit elsewhere?

EDIT: Apparently, this problem also exists on Windows (see http://gilzu.com/?p=6). It ended up with rewriting the serial driver. Is this also my only option on Linux?

link|improve this question

Not posting this as an answer, because I'm not sure if it will help you, but have you considered using PARMRK? if so a character with a parity error will be prefixed with \377 \0, that is, 0xFF 0x00 – Hasturkun Aug 21 '11 at 11:51
@Hasturkun: Thanks for the idea but then I dont know whether I received 0xFF and 0x00 from my device or from the parity checker. – SecStone Aug 21 '11 at 11:58
Isn't the parity handled by the UART? AFAIC you can't really get to it, but you can set no parity to get all 8 bits. – Keith Aug 21 '11 at 12:10
@SecStone: Don't you have some sort of framing (which would probably resolve where those bytes came from)? also, do you have control over the device? – Hasturkun Aug 21 '11 at 12:12
@Keith: AFAIK parity is handled by the UART (as you said). I am looking for a status register (or something similar) where I can get the parity bit of the read characters. – SecStone Aug 21 '11 at 12:18
show 1 more comment
feedback

1 Answer

As I see it, you should be able to use PARMRK as is, assuming that the \377 \0 pattern is unlikely to appear in your input. otherwise, yes, you may modify your serial driver to prepend the parity (or rather, if this byte had a parity error) to each byte. I'd go with the former, though.

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.