02-18-2014 06:49 AM
Hello I am communicating with Antenna trainer AT-5000.
The device Seven segment shows values 0 to 999 Max. For example such as 345, 34 679, etc.
These random values will convert to ASCII character so that it can compatible.
Now expert have to told me that how to find termination character in receiving data.
The termination character will be in numeric or in ASCII????? How to find it.
Also how to enable termination character in VISA Read.????
02-18-2014 06:59 AM
What is the termination character? It is usually a Line Feed character (byte value of 10).
If you are using a serial port then just use the VISA Configure Serial Port. One of the inputs is to enable the termination character and another is to set the termination character.
02-18-2014 07:05 AM
Yes, I will use Serial to USB converter for collection of Data.
Please tell me how to find termination character in examplified data such as 23, 456, 756 and 999 is last numeric and I will use converter that convert the numeric to ASCHII Character.
Please tell me what is Line Feed character (byte value of 10).
02-18-2014 08:24 AM
02-18-2014 08:46 AM
Great answer.
From your reply, I understand that each and every data or string in ASCII has same termination character of single byte (8-byte). Am I right????
Secondly, Again my question is same that how to indentify and give that termination character to Visa serial configure.
Please tell both of question in detail
02-18-2014 09:15 AM
02-18-2014 09:22 AM
Its mean termination character is coming once at the end of overall string or ASCII Characters.
I an making my own hardware that convert number of bits that is sent to seven segmanet display to ASCII Characters.
Please tell me how to add termination character to hardware that convert bits to ASCII.
Can I end termination character as Enter.?????
02-18-2014 09:30 AM
02-18-2014 09:57 AM
Okay I have go through the ASCII Table and got it very well.
After reading, I came to know that I can set the termination character as "A". Is it possible
02-18-2014 10:14 AM
Haris115 wrote:
After reading, I came to know that I can set the termination character as "A". Is it possible
You want capital A to be the termination character? That seems really weird to me, but sure. "A" is just 65 in decimal.
The idea of a Termination Character is that you want to use something your know will have absolutely no chance of being in your actual data. That is why the line feed is often used.