你的浏览器版本过低,可能导致网站不能正常访问!为了你能正常使用网站功能,请使用这些浏览器。
举报
安 发表于 2021-1-8 17:14 用的是DLL库文件通讯,具体方法没有研究过。你可以看看STM32 ST-LINK Utility下面是不是有说明文档介绍DLL ...
谢谢回复!问题已解决。
上位机调用.dat后,再逐次读取隐藏的CMD页面信息。依此判断芯片烧录进展,主要代码如下:
string cmd = txtInput_CMD.Text;
cmd = cmd.Trim().TrimEnd('&') + "&exit";//说明:不管命令是否成功均执行exit命令,否则当调用ReadToEnd()方法时,会处于假死状态
using (Process p = new Process())
{
p.StartInfo.FileName = @"你的文件路径\CMD.bat”
p.StartInfo.UseShellExecute = false; //是否使用操作系统shell启动
p.StartInfo.RedirectStandardInput = true; //接受来自调用程序的输入信息
p.StartInfo.RedirectStandardOutput = true; //由调用程序获取输出信息
p.StartInfo.RedirectStandardError = true; //重定向标准错误输出
//p.StartInfo.Arguments = string.Format("10");//this is argument
p.StartInfo.CreateNoWindow = true; //不显示程序窗口
p.Start();//启动程序
//向cmd窗口写入命令
p.StandardInput.WriteLine(cmd);
p.StandardInput.AutoFlush = true;
//获取cmd窗口的输出信息
StreamReader reader = p.StandardOutput;//截取输出流
string line = reader.ReadLine();//每次读取一行
txtRX_CMD_Info.AppendText(line + "\n");
while (!reader.EndOfStream)
{
line = reader.ReadLine();
txtRX_CMD_Info.AppendText(line + "\n");
}
p.WaitForExit();//等待程序执行完退出进程
p.Close();
}