secureCRT⽆限循环脚本
产品在测试过程中发现反复切换ip地址,会有⼩概率画⾯卡停或者图像变灰,构建securecrt ip⾃动切换按钮脚本如下,但是该按钮脚本⽆法⽆限循环测试。
/app/spi_gpio_decoder write 0x28 0x01000000\r
/app/spi_gpio_decoder write 0x2c 0xc0a80115\r
/app/spi_gpio_decoder write 0x2a 0xc0a8010a\r
/app/spi_gpio_decoder write 0x28 0x01000800\r
usleep 300000 \r
/app/spi_gpio_decoder write 0x28 0x01000000\r
/app/spi_gpio_decoder write 0x2c 0xc0a80116\r
/app/spi_gpio_decoder write 0x2a 0xc0a8010b\r
/app/spi_gpio_decoder write 0x28 0x01000800\r
usleep 300000 \r
构建⽆限循环的vbs脚本如下,可先通过脚本录制操作,获取相关命令的vbs脚本,再加⼊while语句,注意⽂本要保存为ansi格式,否则utf-8下语句可能识别异常。保存下⾯⽂本直接securecrt,脚本,执⾏,即可。
#$language = "VBScript"
#$interface = "1.0"
Sub main
While 1
crt.Screen.Send "/app/spi_gpio_decoder write 0x28 0x01000000" & chr(13)
crt.Screen.Send "/app/spi_gpio_decoder write 0x2c 0xc0a80115" & chr(13)
crt.Screen.Send "/app/spi_gpio_decoder write 0x2a 0xc0a8010a" & chr(13)
crt.Screen.Send "/app/spi_gpio_decoder write 0x28 0x01000800" & chr(13)
crt.Sleep(300) & chr(13)
crt.Screen.Send "/app/spi_gpio_decoder write 0x28 0x01000000" & chr(13)
crt.Screen.Send "/app/spi_gpio_decoder write 0x2c 0xc0a80116" & chr(13)
crt.Screen.Send "/app/spi_gpio_decoder write 0x2a 0xc0a8010b" & chr(13)
crt.Screen.Send "/app/spi_gpio_decoder write 0x28 0x01000800" & chr(13)
crt.Sleep(300) & chr(13)
WEnd
End Sub
>decoder
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论