butterfly
Joined: 04 Jun 2006 Posts: 35
|
rs 232 problem |
Posted: Tue Oct 10, 2006 12:05 am |
|
|
when send only one constant like 'u' . it is no problem but when my code is:
printf("BASLA");
while(TRUE)
{
if(kbhit())
{
AAAA=fgetc();
AAAA=AAAA+1;
putc(AAAA);
}
}
and communicate with pc :
it sends:
BASLA þ à ð þð àøÀðð ðààøüþÀüþ
what is the problem can u tell me? |
|