有谁对从Hyper Terminal捕获的text文件有更深入的研究?
条件:我使用Hyper Terminal 将嵌入式系统运行的过程捕获下来生成一个text文件,用来分析一些软件的问题
接下来,一个朋友跟我提了两个问题,
Q1: Is the captured text file what you use as a basis for analyzing the results of the manual tests?
Q2: Can you send commands to the monitor?
IF Q1 .AND. Q2 THEN
... you could automate actions and analyis
ELSE IF Q1 .AND. .NOT. Q2
... write a parser for the captured text file
END IF
END IF
如果我的情况是Q1 AND NOT Q2,那么,我怎么根据这个捕获的Text文件写这个"parser"(我查到是剖析器的意思)。
另外,有什么方法能够实现从PC通过serial interface向target发送指令来完成操作么?