Using (2) PIC16C716's simply w2=100
I was under the impression that the slave would wait (forever in above example) until data (w2) is recieved?
I found this in some thread:
master:
SEROUT2 PortB.7,N2400,100,Main,[Wait "A",w2]
slave:
SERIN2 PortB.0,N2400,100,Main,[Wait "A",w2]

Does this wait 100ms and if no transfer go to Main subr?
Will this transfer var contents of w2? There is something about Wait "A" I've seen. Can you give example?