ARM: UART in LPC 2378

Dear all,

here I did UART implementation in LPC 2378.

but whever I transmitting data on serial and observed at Hyperterminal.I am not getting data in hex format.I am getting in ascci format.

suppose I am sending hex 0x15,on hyperterminal then I am getting charactor having ASSCI having 0x15.

how cam get data in HEX format on hyperterminal.

waitting for ur reply…

thanks.

“I am sending hex 0x15,on hyperterminal then I am getting charactor having ASSCI having 0x15.”

Of course you do: that is exactly what hyperterminal - or any other text-based application - is expected to do!

Do you mean, instead of the byte value 0x15, you want to transmit the two characters ‘1’ and ‘5’ ?

ie, you want to transmit two bytes containing the values 0x31 and 0x35 - being the ASCII codes for ‘1’ and ‘5’ … ?

Is that what you mean?