RS232-7 data- even parity- 2 stop

manie

Senior Member
Could I read rs232 with 7 data bits, even parity and 2 stop bits at 4800 baud, using Picaxe 28x1 or 28x2 ?

What would the Serin command look like then ?

If not, is there some form of convertor available to convert to standard Picaxe Rs232 ?

Someone in another post professed that his project could mean he gets some income. In my case, the project could mean the difference between survival:D and......:(:eek:

As always, your input highly valued...
 

hippy

Ex-Staff (retired)
Reading 7-bit data with odd/even parity and 2 or more stop bits is easy; simply mask off the msb of the received data to get rid of the parity bit. The extra stop bit(s) don't matter as they just appear like normal gaps between consecutive bytes.

SerIn pin, baud, b0
b0 = b0 & $7F
 

manie

Senior Member
Lets close this thread and start a new thread on the project relating to these questions regarding data bits, distance measurement etc.

Thanks to all, the new thread will explain my NEED ! Look for:

Accurate plus Precise distance
 
Top