Communication in AUTOSAR can take two major paths : com and ldcom. I understand that ldcom is more efficient version of com (By removing most COM features). But are there any general rules/Criterion that can help decide to stick with one of them?
Asked
Active
Viewed 1,184 times
1
-
There are situations when the PDUs are large (let's say 60kb). Those PDUs can be then transmitted using LdCom. The criteria will be the real time constraints. (an example: the data should be end to end protected and available on the bus in 20ms) – demorgan Nov 05 '21 at 15:32
1 Answers
1
If you are reimplementing all the features of Com within your SWC(s), then you are definitely using LdCom for the wrong reasons.
And if your SWCs now depend also too much on the definition of the network (e.g. you have to change your SWC always as soon as the network description changes), then you also using LdCom for the wrong reasons.

kesselhaus
- 1,241
- 8
- 9
-
i totally get & agree with the first point but could you please provide a more detailed example of the second point? because if the network parameters change, i will be changing "Com" configurations as well.. – moha Oct 27 '21 at 18:23