void Delay(byte time);
void main(void) {
MCU_init(); /* call Device Initialization */
for(; {
while(!SCS1_TC); SCDR = 0x55;
Delay(5);
} /* loop forever */
}
void Delay(byte time)
{
word i;
for(i = 0;i < time*255; i++)
{
__RESET_WATCHDOG();
}
}
datamstr wrote:
[snip.....] To validate this setup, I connected the output from the RS-485 IC to the COM pin on the Demo Board.The serial string of characters flows through to HyperTerminal just fine.So, that is whay I think I must be doing something wrong in the code.Thanks,
David