This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

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...

Shyam T
Pune India.

Parents
  • Hypoterminal is just a dumb terminal; therefore, if you want some particular formatting, it is up to you to do that formatting before sending to Hypoterminal - or any other dumb terminal.

    So, if you want a dumb terminal to display "51" for the hex value 0x51, that means that you have to send it the two characters '5' and '1'.

    Have you ever heard of printf...?

Reply
  • Hypoterminal is just a dumb terminal; therefore, if you want some particular formatting, it is up to you to do that formatting before sending to Hypoterminal - or any other dumb terminal.

    So, if you want a dumb terminal to display "51" for the hex value 0x51, that means that you have to send it the two characters '5' and '1'.

    Have you ever heard of printf...?

Children