免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 12928 | 回复: 2
打印 上一主题 下一主题

程序运行出错 TypeError: 'str' does not support the buffer interface [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-03-25 17:06 |只看该作者 |倒序浏览
程序功能:测试通过COM1串口对设备收发数据的正确率。

运行时错误提示如下,请帮忙查看是什么原因?多谢!

Traceback (most recent call last):
  File "D:\work\python\serial-modbus.py", line 24, in <module>
    sendbin=binascii.a2b_hex(sends)
TypeError: 'str' does not support the buffer interface


使用Python3.2,源代码:

if __name__ == '__main__':
    import sys
    import time
    import binascii
    import datetime
    from time import gmtime, strftime

    #日志初始化(修改这里)
    LogR=open('D:\\work\\python\\test\\pkgtestR.txt','r+') #所有包
    LogE=open('D:\\work\\python\\test\\pkgtestE.txt','r+') #错误包
    LogN=open('D:\\work\\python\\test\\pkgtestN.txt','r+') #空包
    num=0
    err=0
    nul=0
    #发送数据包(修改这里)
    sends='01 04 13 87 00 01 85 67'
    #验证数据包(修改这里)
    checks='01 04 02 00 91 78 9C '

    #这里将字符串转成HEX数据
    sends=sends.replace(' ','')
    sendbin=binascii.a2b_hex(sends)   
    checks=checks.replace(' ','')
    checkbin=binascii.a2b_hex(checks)
    #打开通讯口
    fserial=open('COM1','rb+')
   
    for i in range(1000):
        try:
            fserial.write(sendbin)
            fserial.flush()
            time.sleep(0.3)
            sebuf=fserial.read(255)
            #将HEX数据转换成字符串
            if len(sebuf)>0:
                strdat=str(binascii.b2a_hex(sebuf))
                strdat=strdat[2:len(strdat)-1]
                index=2
                while index<len(strdat):
                    strdat=strdat[:index]+' '+strdat[index:]
                    index=index+3
            else:
                strdat=''
            #精确保存时间
            mstr=datetime.datetime.now()
            tstr=strftime("%Y-%m-%d %H:%M:%S ", gmtime()) + str(mstr.microsecond) + '('
            if sebuf==checkbin:
                num=num+1
            elif sebuf==b'':
                nul=nul+1
                LogN.write(str(i)+' '+tstr+strdat+')\n')
            else:
                err=err+1
                LogE.write(str(i)+' '+tstr+strdat+')\n')
            
            print(str(i)+' '+tstr+strdat+')')
            LogR.write(str(i)+' '+tstr+strdat+')\n')
        except:
            print('串口读取错误')

    print('测试通讯包间隔时间0.3秒')
    print('成功接收包数='+str(num))
    print('失败接收包数='+str(err))
    print('空包数='+str(nul))
   
    LogR.write('测试通讯包间隔时间0.3秒\n')
    LogR.write('成功接收包数='+str(num)+'\n')
    LogR.write('失败接收包数='+str(err)+'\n')
    LogR.write('空包数='+str(nul)+'\n')
    fserial.close()
    LogR.close()
    LogE.close()
    LogN.close()

论坛徽章:
0
2 [报告]
发表于 2011-03-26 12:51 |只看该作者
Just try

sendbin=binascii.a2b_hex(sends.encode('ascii') )

to see if that may works

论坛徽章:
0
3 [报告]
发表于 2011-03-28 14:35 |只看该作者
按照您提供的代码更新了程序,works! 非常感谢!

Just try

sendbin=binascii.a2b_hex(sends.encode('ascii') )

to see if that may works
iamkey9 发表于 2011-03-26 12:51
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP