We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362daa4 commit 820d878Copy full SHA for 820d878
isotp/protocol.py
@@ -717,7 +717,7 @@ def process_tx(self):
717
else:
718
if flow_control_frame.flow_status == PDU.FlowStatus.Wait:
719
if self.params.wftmax == 0:
720
- self.trigger_error(isotp.errors.UnsuportedWaitFrameError('Received a FlowControl requesting to wait, but fwtmax is set to 0'))
+ self.trigger_error(isotp.errors.UnsuportedWaitFrameError('Received a FlowControl requesting to wait, but wftmax is set to 0'))
721
elif self.wft_counter >= self.params.wftmax:
722
self.trigger_error(isotp.errors.MaximumWaitFrameReachedError('Received %d wait frame which is the maximum set in params.wftmax' % (self.wft_counter)))
723
self.stop_sending()
0 commit comments