当前位置:网站首页>SecureCRT infinite loop script
SecureCRT infinite loop script
2022-04-22 07:22:00 【oFFCo】
The product is found to switch repeatedly during the test ip Address , There is a small probability that the picture will stop or the image will turn gray , structure securecrt ip The script of automatic switching button is as follows , However, the button script cannot test indefinitely .
/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
Build an infinite loop vbs The script is as follows , You can record the operation through the script first , Get the of related commands vbs Script , Then add while sentence , Note that the text should be saved as ansi Format , otherwise utf-8 The following statement may identify exceptions . Save the following text directly securecrt, Script , perform , that will do .
#$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
版权声明
本文为[oFFCo]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204220611028461.html
边栏推荐
- Installer et modifier les chemins d'installation des plug - ins utools et vscode
- (四)Sql Server中的字符集(排序规则)
- 面试官常问的,对象分配的一般过程及特殊情况
- 若依报错处理 # es6 filter 过滤数组
- 桥接模式下主机ping不通虚拟机
- [number theory] congruence (III): univariate linear congruence equation
- JVM中唯一一个不会发生GC和OOM的存储区域
- Change the class with parameters in the first part of the last operation to be presented in the way without parameters, and the function remains unchanged.
- 1. Compile the following three modules of student information management system: and detect the implementation. 1. Add student information 4. Query student information 5. Query all student information
- MongoDB安装自启动服务
猜你喜欢

Pixhawk4+Up Board / NUC Implement VIO By Deploying T265

Pixhawk4+Up Board / NUC Implement VIO By Deploying T265

Raspberry Pi 4b

jeecg项目部署笔记

更新hdf之后无法找到接口映射

a5 transceiver 信号vod和预加重调整关系

搭建ES6开发环境,实时编译

Define the class shape as the parent class, and define the method to calculate the perimeter and area in the class; (2) Define the shape subclass circle, with radius attribute and constant PI, and ove

Installer et modifier les chemins d'installation des plug - ins utools et vscode

14行代码完成任意选择图片爬取
随机推荐
1. Compile the following three modules of student information management system: and detect the implementation. 1. Add student information 4. Query student information 5. Query all student information
Define a student class 1 to get the student's name: get_ Name() return type: STR 2 get student's age: get_ Age() return type: int 3 returns the highest score among the three subjects. get_ course()
SQLSERVER存储过程开发笔记----零碎问题以及关于操作文件的操作
[DRC RTSTAT-1] Unrouted nets: 1 net(s) are unrouted
Anaconda安装与使用
ASP. Net daily development notes ---- parsing and transforming XML
C语言 | 预处理
. net learning notes - about Net core (1) [. NETCORE's project structure, five ways to transfer values to pages, and the use of log4net and NLog]
JS realizes clicking avatar to upload picture modification
(二)Sql Server的基本配置以及使用Navicat连接Sql Server
【数论】【不定方程】n元一次不定方程、佩尔方程、毕达哥拉斯定理、费马大定理
Solution to the problem of Chinese garbled code in pyftpdlib
Powerjob workflow
Vscode opens the applet and runs it to wechat developer tool wxml file compilation error
Review of the sixth edition of introduction to software engineering (notes)
【数论】素数(三):素数判断法(朴素法、模6法、Rabin-Miller及改进)
[Opt 31-67] Problem axi_interconnect RTL报错
Find a notepad file by yourself, find the data material by yourself, and count the times of three keywords or sentence entries in the whole text.
【数论】同余(四):一元线性同余方程组(两两相消、中国剩余定理)
secureCRT无限循环脚本