使用putty和.bat文件将命令发送到串行端口

时间:2014-07-07 14:45:12

标签: batch-file putty plink

我想通过使用PuTTy创建.bat文件来自动发送以下AT命令。

AT

确定

AT + CPIN = 1234

确定

到目前为止我可以手动完成。但我想通过单击批处理文件执行上述命令来自动完成。有人可以帮我准备我的.bat文件的命令吗?提前谢谢!

1 个答案:

答案 0 :(得分:2)

尝试这样的事情:

commands.bat:

@echo off
echo AT
timeout /t 1 /nobreak >nul 2>&1
echo AT+CPIN = 1234
timeout /t 1 /nobreak >nul 2>&1
pause >nul 2>&1

send.bat:

commands.bat | putty -load test

其中send.bat和commands.bat在同一目录下,并执行send.bat