Generating a virtual ECU with standardized subservice identifiers #455
-
@LeventCelik asked in #453 (comment)
/cc @fkglr |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can control some of the randomness of the ECU using its command line parameters. E.g. you can create a virtual ECU which has at least the three session 0x01, 0x02 and 0x03 using the parameter
The lists behind the services refer to the available sub-functions of that service. Services which by specification do not have subfunctions have null listed instead. I hope this helps |
Beta Was this translation helpful? Give feedback.
You can control some of the randomness of the ECU using its command line parameters. E.g. you can create a virtual ECU which has at least the three session 0x01, 0x02 and 0x03 using the parameter
--mandatory_sessions [1,2,3]
. You can also suppress creating further sessions by setting the probability of session activation to zero with--p_session 0
.These sessions however don't have a specific behavior. You would have to program that in on your own.
What you c…