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: docs/modules_usage/uds_auxiliary.rst
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Find below a complete configuration example :
26
26
com: can_channel
27
27
config:
28
28
# you can specify your odx file by using odx_file_path parameter
29
-
# and instead of using send_uds_raw method use the send_uds_config
29
+
# and instead of using send_uds method use the send_uds_config
30
30
# for a more human readable command
31
31
odx_file_path: null
32
32
request_id : 0x123
@@ -75,14 +75,10 @@ Send UDS Raw Request
75
75
76
76
Send UDS request as list of raw bytes.
77
77
78
-
The method send_uds_raw(:py:meth:`pykiso.lib.auxiliaries.udsaux.UdsAuxiliary.send_uds_raw`) takes one mandatory parameter msg_to_send and one optional : timeout_in_s
78
+
The method send_uds(:py:meth:`pykiso.lib.auxiliaries.udsaux.UdsAuxiliary.send_uds`) takes one mandatory parameter msg_to_send
79
79
The parameter msg_to_send is simply the UDS request payload which is a list of bytes.
80
80
81
-
The optional parameter timeout_in_s (by default fixed to 5 seconds) simply represent the maximum
82
-
amount of time in second to wait for a response from the device under test. If this timeout is reached, the
83
-
uds-auxiliary stop to acquire and log an error.
84
-
85
-
The method send_uds_raw method returns a :py:class:`~ebplugins.udsaux.uds_response.UdsResponse` object, which is a subclass of `UserList
81
+
The method send_uds method returns a :py:class:`~ebplugins.udsaux.uds_response.UdsResponse` object, which is a subclass of `UserList
0 commit comments