pyUSB - отложена отправка на устройство? - PullRequest
0 голосов
/ 30 марта 2020

У меня есть принтер ES C. Я сделал простой скрипт для отправки данных на устройство, но после изменения содержания скрипта - 1x печатается предыдущая версия субтитров, а затем, при повторном вызове, текущая. Как будто данные с USB куда-то кешируются. Как я могу сделать несколько разъемов FLU SH?

test.py

usb_= Connector(showUsbDevices=False)
usb_.send(b'I LOVE YOU')

:

class Connector:
    def __init__(self, idVendor=0x0123, idProduct=0x1234, showUsbDevices=False):
        self.idVendor = idVendor
        self.idProduct = idProduct
        if showUsbDevices:
            pass
        self.device  = self.FindAndConnect()
        if self.device is not None:  

            #if self.device.is_kernel_driver_active(0):
                #self.device.detach_kernel_driver(0)
                #self.device.detach_kernel_driver(1)
            self.device.reset()
            self.device.set_configuration()

            self.cfg = self.device.get_active_configuration()

            data_itfs = list(usb.util.find_descriptor(self.cfg, find_all=True,custom_match=lambda e: (e.bInterfaceClass == 0xA)))
            intf = data_itfs[0]
            self.device.set_interface_altsetting(intf)
            itf_num = intf.bInterfaceNumber

            print ("inf descriptor:===============", intf)
            print("numer:===============",itf_num)
            self.messageOut = usb.util.find_descriptor(intf, custom_match=lambda e: not (e.bEndpointAddress & 0x80))

            self.messageIn = usb.util.find_descriptor(intf, custom_match=lambda e: (e.bEndpointAddress & 0x80))
            #print(">>>>>>>>>>>>>>>>>>>Message Out",self.messageOut)
            #print(">>>>>>>>>>>>>>>>>>>Message In",self.messageIn)
            #print(repr(self.cfg))

    def __del__(self):
        if self.device is not None:
            usb.util.dispose_resources(self.device)

    def send(self, data):
        #print ("endpoint_out",self.messageOut)
        if self.device is not None:
            print(data.decode("IBM852"))
            self.messageOut.write(data)
            #self.device.write(1,data,100)
            #dane = self.messageIn.read(300)
            #print("IN|->",dane)


    def FindAndConnect(self):
        device=usb.core.find(idVendor=self.idVendor, idProduct=self.idProduct)
        if device is None:
            raise ValueError('Not found idVendor 0x%04x i idProduct 0x%04x' % (self.idVendor,self.idProduct))  
        print('Printer found idVendor 0x%04x i idProduct 0x%04x.... ' %(self.idVendor,self.idProduct))
        return device

, поэтому, когда я запускаю тестовый скрипт, который говорит, что я тебя люблю

я получаю ILOVE YOU

когда я изменяю надпись на I HATE YOU и запускаю сценарий, печатается еще одна копия. I LOVE YOU, и только следующий запуск дает: I HATE YOU *

Что это? Где ошибка?

1 Ответ

0 голосов
/ 01 апреля 2020

Я нашел это! Его: self.device.reset() в финализаторе:

def __del__(self):
        if self.device is not None:
        self.device.reset()  ############### <<<< THIS IS THE KEY>>>> (added to all code)
        usb.util.dispose_resources(self.device)
...