0

我有一个问题:我创建了一个小的 Python 脚本来从 LAN 上的 Omron PLC 内存中读取数据。Delphi 程序运行批处理文件,定期(每 6 秒)运行 Python 脚本。

该脚本在 2 台 Win 7 PC 和 1 台 Win XP PC 上运行。

我的问题是:Win XP PC和PLC之间没有数据传输一段随机时间(大约1分钟,有时更多),但Win 7 PC与同一个PLC通信没有问题。

我使用UDP协议。

def main():
    udpSock = util_socket.utilSocket()
    command = udpSock.read_from_file("udpCommand")
    command = int(command)
    messaggio = mex()
    if command==1:
        msg = messaggio.get_messaggio_lettura()
        udpSock.send_command(msg)
        ricevi_risposta(udpSock)
    if command==2:
        msg = messaggio.get_messaggio_azzeramento()
        udpSock.send_command(msg)
        msg = messaggio.get_messaggio_lettura()
        udpSock.send_command(msg)
        ricevi_risposta(udpSock)
    if command<1 or command>2:
        udpSock.write_to_file("ERROR !!!", "numPezzi")

def ricevi_risposta(udpSock):        
    data, addr = udpSock.recv_socket()
    contaPezzi = udpSock.get_dato_pulito(data)
    udpSock.write_to_file(contaPezzi, "numPezzi")
    stringa = str(datetime.datetime.now().strftime( "%d/%m/%Y %H:%M" )) + " - dato ricevuto: " + str(data) + " // dato convertito: " + str(contaPezzi) + "\n" 
    udpSock.append_to_file(stringa, "numPezzi_Log_" + str(datetime.datetime.now().strftime( "%d/%m/%Y")) )

def recv_socket(self):

    # the public network interface
    #HOST = socket.gethostbyname(socket.gethostname())

    # create a raw socket and bind it to the public interface
    s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_IP)
    self.get_parametri()
    s.bind((self.ipAddressPc, 0))
    # Include IP headers
    s.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, 1)
    data, addr = s.recvfrom(65536)

    return data, addr

def send_command(self, msg):
    self.get_parametri()
    udp_ip = self.ipAddressPlc
    udp_port=9600 #5575

    #print "UDP target IP:", udp_ip
    #print "UDP target port:", udp_port
    #print "message:", msg

    sock = socket.socket( socket.AF_INET, # Internet
                          socket.SOCK_DGRAM ) # UDP
    sock.sendto( msg, (udp_ip, udp_port) )

LAN 似乎“睡着了”。这是日志文件:(08:41:13 -> 08:42:30。预期 08:41:13 -> 08:41:19, 08:41:25, 08:41:31, ...)

27/03/2013 08:41:13 - dato ricevuto (dati non riportabili) dato convertito: 252
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:30 - dato ricevuto (dati non riportabili) dato convertito: 260
27/03/2013 08:42:36 - dato ricevuto (dati non riportabili) dato convertito: 261

可能是什么问题呢?

4

1 回答 1

0

这可能是由于 LAN 中的网络拥塞造成的。如果它只是发生了一会儿,比如 1 分钟。

于 2013-03-28T11:38:34.377 回答