I created code using the PIC BasicPro IDE. I went through the turoial on interfacing a Basic Stamp to a Matrix Orbital display. Is it possible to use the HSEROUT command instead of the SEROUT command? The reason I ask is because, the SEROUT command only allows for bauds up to 9600, while the HSEROUT can communicate at 19200. The HSEROUT command uses the PIC's hardware UART.
I tested the HEX strings from the PIC (using a RS-232 spy tool), and was receiving proper commands to clear the screen and display data. I also tested the display using the "Display Tuner" GUI and made sure it was set at 19200.
Also, I noticed that in the turoial, that you created seperate SEROUT command for each byte.
'SEROUT 1, 84, [254] 'Command Prefix
'SEROUT 1, 84, [88] 'Clear screen command
Does it not work if you put the bytes back to back?
'SEROUT 1, 84, [254,88] 'Clear screen command
THX

[/i][/b]