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
Copy file name to clipboardExpand all lines: udsoncan/__init__.py
+19-12Lines changed: 19 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -294,12 +294,12 @@ class AddressAndLengthFormatIdentifier:
294
294
This class defines how many bytes of a memorylocation, composed of an address and a memorysize, should be encoded when sent over the underlying protocol.
295
295
Mainly used by :ref:`ReadMemoryByAddress<ReadMemoryByAddress>`, :ref:`WriteMemoryByAddress<WriteMemoryByAddress>`, :ref:`RequestDownload<RequestDownload>` and :ref:`RequestUpload<RequestUpload>` services
296
296
297
-
Defined by ISO-14229:2006, Annex G
297
+
Defined by ISO-14229:2020, Annex H
298
298
299
-
:param address_format: The number of bits on which an address should be encoded. Possible values are 8, 16, 24, 32, 40
299
+
:param address_format: The number of bits on which an address should be encoded. Possible values are 8, 16, 24, 32, 40, 48, 56, 64
300
300
:type address_format: int
301
301
302
-
:param memorysize_format: The number of bits on which a memory size should be encoded. Possible values are 8, 16, 24, 32
302
+
:param memorysize_format: The number of bits on which a memory size should be encoded. Possible values are 8, 16, 24, 32, 40, 48, 56, 64
303
303
:type memorysize_format: int
304
304
305
305
"""
@@ -308,14 +308,21 @@ class AddressAndLengthFormatIdentifier:
0 commit comments