python调用moxapcommlite通过串口ymodem协议实现发送文件

本文实例讲述python调用moxa pcomm lite通过串口ymodem协议实现发送文件的方法,该程序采用python 2.7编写。主要内容如下:

经过长期搜寻,终于找到了moxa pcomm lite。调用pcomm.dll可以非常方便的通过串口的xmodem、ymodem、zmodem等协议传输文件,而无需重复制造轮子。

pcomm lite 1.6适用于win7等系统,做为dll文件可以采用任何支持调用dll的编程语言例如vc++、vb、qt等等编写应用程序,点此本站下载

以下是发送端的python代码:

#encoding=utf-8
from ctypes import *
dll = windll.loadlibrary(“pcomm.dll”)
port = 2 # 指定串口com2
dll.sio_open(port)
dll.sio_ioctl(port, 15, 0x00 | 0x03 | 0x00) # 57600, 无校验,8位数据位,1位停止位
def cb(xmitlen, buflen, pbuf, flen):
print xmitlen, flen,
print
return xmitlen
callback = winfunctype(c_int, c_long, c_int, pointer(c_char), c_long)
ccb = callback(cb)
dll.sio_ftymodemtx(port, “e:\test.jpg”, ccb, 0)
dll.sio_close(port)

Posted in 未分类

发表评论