How to setting transfer speed to 19200bps(PC-E500)

Generally, you uses the "OPEN" comand to set transfer speed but in this case, you can be set up to 9600 bps.
But if you tweak "SIO Parameter Work" directly, you can set to 19200 bps.
Try execute following command.

POKE &BFD33, (PEEK &BFD33 OR &70)

Details of &BFD33

bit7bit6,5,4bit3,2bit1bit0
SpeedParityChar lengthStop bit
0000--- 00Even08 bit01 bit
001300bps 01Odd17 bit12 bit
010600bps 10none
0111200bps 11none
1002400bps
1014800bps
1109600bps
11119200bps

Return