python調用Moxa PCOMM Lite通過串口Ymodem協議實現傳送檔案

來源:互聯網
上載者:User
本文執行個體講述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-8from ctypes import *dll = windll.LoadLibrary("PCOMM.DLL")port = 2 # 指定串口COM2dll.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 xmitlenCALLBACK = 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)
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.