We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de9bce commit d02f3a7Copy full SHA for d02f3a7
canopen/sdo/client.py
@@ -65,6 +65,13 @@ def send_request(self, request):
65
break
66
67
def read_response(self):
68
+ """Wait for an SDO response and handle timeout or remote abort.
69
+
70
+ :raises canopen.SdoAbortedError:
71
+ When receiving an SDO abort response from the server.
72
+ :raises canopen.SdoCommunicationError:
73
+ After timeout with no response received.
74
+ """
75
try:
76
response = self.responses.get(
77
block=True, timeout=self.RESPONSE_TIMEOUT)
0 commit comments