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 03cee34 commit f1fb47eCopy full SHA for f1fb47e
test/test_sdo.py
@@ -97,6 +97,13 @@ def test_expedited_upload(self):
97
self.assertEqual(trans_type, 254)
98
99
# Same with padding to a full SDO frame
100
+ self.data = [
101
+ (TX, b'\x40\x00\x14\x02\x00\x00\x00\x00'),
102
+ (RX, b'\x4f\x00\x14\x02\xfe\x00\x00\x00')
103
+ ]
104
+ trans_type = self.network[2].sdo[0x1400]['Transmission type RPDO 1'].raw
105
+ self.assertEqual(trans_type, 254)
106
+
107
self.data = [
108
(TX, b'\x40\x00\x14\x02\x00\x00\x00\x00'),
109
(RX, b'\x42\x00\x14\x02\xfe\x00\x00\x00')
0 commit comments