Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions usbtmc/usbtmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,10 @@ def open(self):
if self.device.idProduct == 0x04ce:
self.rigol_quirk_ieee_block = True

# BK Precision 8600
if self.device.idVendor == 0x2ec7 and self.device.idProduct == 0x8800:
self.device.ctrl_transfer(bmRequestType=0xA1, bRequest=0xA0, wValue=0x0001, wIndex=0x0000, data_or_wLength=1)

self.connected = True

self.clear()
Expand Down