python-dfu icon indicating copy to clipboard operation
python-dfu copied to clipboard

How to convert Normal Mode to DFU Mode

Open premanandaembed opened this issue 2 years ago • 0 comments

with usb1.USBContext() as context:
    for device in context.getDeviceList():
        if int(0xXXXX) == device.getVendorID() and int(0x0001) == device.getProductID():
            dfu_device = dfu.DFU(dev.open())
            dfu_device.startDFU() 

Screenshot 2023-04-01 101553

how to convert normal mode to dfu mode.

premanandaembed avatar Apr 01 '23 04:04 premanandaembed