您现在所在的是:

运动控制

回帖:2个,阅读:177 [上一页] [1] [下一页]
345
运动控制小正
文章数:71
年度积分:345
历史总积分:345
注册时间:2022/9/5
发站内信
发表于:2023/11/27 11:10:11
#0楼
打开linux控制器中/etc/rc.local文件,将第一行#!/bin/sh -e修改为#!/bin/sh,在最后一行exit 0前添加要执行的语句。

注:若执行的程序需要依赖zmotion.lib库,则需加5s延迟

例子:VPLC516E控制器需开机执行/home/zmotion/test程序,修改/etc/rc.local后内容如下所示

#!/bin/sh

#

# rc.local

#

# This script is executed at the end of each multiuser runlevel.

# Make sure that the script will "exit 0" on success or any other

# value on error.

#

# In order to enable or disable this script just change the execution

# bits.

#

# By default this script does nothing.

chmod 777 /dev/ttyS*

dev="/dev/ttyUSB3"

if [ -c "$dev" ];then

sleep 3s

pppd call quectel-ppp &

else

echo "no exit ttyUSB"

fi



df | grep "4515168" | grep "root"

if [ $? -eq 0 ];then

       resize2fs  /dev/mmcblk1p8

else

       echo    

fi

sleep 5

/home/zmotion/test &


exit 0
345
运动控制小正
文章数:71
年度积分:345
历史总积分:345
注册时间:2022/9/5
发站内信
发表于:2023/11/27 11:44:44
#1楼
此楼内容不符合板块规定,不予显示! 查看原帖内容>>
50
77257734
文章数:0
年度积分:50
历史总积分:50
注册时间:2023/11/28
发站内信
发表于:2023/11/28 20:35:40
#2楼
此楼内容不符合板块规定,不予显示! 查看原帖内容>>

关于我们 | 联系我们 | 广告服务 | 本站动态 | 友情链接 | 法律声明 | 非法和不良信息举报

工控网客服热线:0755-86369299
版权所有 工控网 Copyright©2024 Gkong.com, All Rights Reserved

31.2002