The ASCII program can be used to run a series of commands only, or run a series of commands and compare the resulting reply to an expected reply.


If running a series of commands (without comparing) there will be only one column:


Command


which would look like this:


PX=0
PY=0
PZ=0
PU=0


If running a series of commands and comparing the reply to an expected reply, there are two columns:


Command, Expected Reply


which would look like this:


PX=0,OK
PY=0,OK
PZ=0,OK
PU=0,OK


The program file can also contain lines for comments. Such lines simply start with the single quote (') character followed by a space like this:


' wrong reply to demonstrate how app flags it
PX=0,DUMMY
PY=0,DUMMY
PZ=0,DUMMY
PU=0,DUMMY


Please note that while it is possible to use Unicode character languages in the comments, it is not recommended as it has not been fully tested, and may cause unexpected results in the code execution