You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Mac OS X, sending data larger than ~128K to a Keysight scope results in a timeout in recvfrag. This is caused by a bug in sendfrag where the code should have used sock.sendall instead of sock.send:
defsendfrag(sock, last, frag):
x=len(frag)
iflast: x=x|0x80000000header=struct.pack(">I", x)
sock.sendall(header+frag)
The text was updated successfully, but these errors were encountered:
bobmcnamara
changed the title
Hang due to bug in sendfrag
Hang sending large payloads to Keysight scopes
Jan 9, 2017
On Mac OS X, sending data larger than ~128K to a Keysight scope results in a timeout in recvfrag. This is caused by a bug in sendfrag where the code should have used sock.sendall instead of sock.send:
The text was updated successfully, but these errors were encountered: