When recieving, do what Dave said, just use 8E1. PBP will see the extra stopbit as a little pause between the characters, no problems atall and nothing you need to worry about.

When sending, you need to add that extra stopbit. You do that by adding a short pause(1/19200=52us) after each character. You can also use character pacing(which does exactly that). The biggest problem with that is that SEROUT2 paces with milliseconds. If you specify 1ms it may take too much time to send the entire message, but it will work. If your messages are short it may not be a problem.

/Ingvar