Hi all, I have a unexpected fail, porting some code from HSEROUT to SEROUT2
I mean, in my PCB I have a MAX232 with a PIC18f452, using this lines of code working OK :

DEFINE OSC 10
DEFINE HSER_CLROERR 1
DEFINE HSER_RCSTA 90H
DEFINE HSER_TXSTA 24H
DEFINE HSER_SPBRG 64
HSEROUT ["HELLO WORLD",13,10]
(in the hyperterminal appear "HELLO WORLD")

And this Doesn't work in the same board!

DEFINE OSC 10
symbol RXD=PORTC.7
symbol TXD=PORTC.6
TRISC.7=1
TRISC.6=0
TXD=1
SEROUT2 TXD,84,["HELLO WORLD",13,10]
(in the hyperterminal nothing appear!)

I can't figure a mistake.... Can Anyone Helpme?