Hi, Normally when we use printf to output on RSR232, in which format it outputs. ascii-hex or binary.How to set the output format. rutu
That's "41" hex, of course. I'm really out of it today. So just trust these guys instead: http://www.asciitable.com/
Hi, Thankx andrew fro explanation also drew i caught me wright. Actually if i use uchar val=0x0A; printf ("%02bx", val); it should output "0A" and not a linefeed. since with printf ("%c", val); i get a linefeed. I got the point thankx. rutu