Embedded
Hi I am using Tera Term to Debug my program. So I have Interfaced my Microcontroller with my laptop and have programed my MCUto output data thorough Serial (USART) at 9600 baud rate.
To test the set-up I sent the hex value 0X6Eat a n interval of sec and I received the character"n" on my Tera Term software. I understand that n is the equivalent char value of 0x6E but I need the software to display binary value instead of char value.
For instance I should get the binary value 01101110 in my screen for the hex value 0x6E.
How can change the settings to make the Tera Term display values in binaries
John_Kripto
Joined August 11, 201835
Saturday at 01:52 PM
Hi Violet,
Thanks for your tip, I tried the Debug mode and was able to see the binary values on tera term. But its kind of annoying to shift to debug mode every time and the debug windows looks a bit messed up on terra term.
So, is there any best alternative for Tera Term which I can use to view output on binary format ?
- Log in or register to post comments
Reply Like
R
Ronald MC
Joined August 17, 201814
Friday at 11:08 AM
I am not sure which operating system you are using, but if you are using windows there are lots of options available. The best one that I have com across is "Serial Port Monitor by Eltima". It can show you the data in binary, ASCII, Hex, Decimal and Char format, also can log the data so that we can analyze it in future. But it is not free and has limited trial pack.
If you are trying for a free software then check out "SerialMon" it is capable of displaying the incoming data in Binary format
- Log in or register to post comments
Reply Like
Lon Walker
Joined July 12, 20211
Monday at 07:46 PM
For Windows-10 anyhow, I had to press Shift+Escape key sequence to toggle mode.
However, it is the best just to reconfigure the Setup.INI file to keep it in that mode if you want to reopen TeraTerm application into the mode already.
Excerpt from there:
---------------------------------
; Display all characters (debug mode)
Debug=on
; Debug mode type which can be selected by user.
; on|all = All types
; off|none = Disabled debug mode
; normal = usual teraterm debug mode
; hex = hex output
; noout = disable output completely
DebugModes=all
- Log in or register to post comments
Reply Like
Add New Comment
Login to Comment
Sign in with Google Log in with Facebook Sign in with GitHub- Log in or register to post comments