An Introduction to the CAN Bus: How to Programmatically Control a Car
1–10 of 110 posts
Re: An Introduction to the CAN Bus: How to Programmatically Control a Car
#2Re: An Introduction to the CAN Bus: How to Programmatically Control a Car
#3Re: An Introduction to the CAN Bus: How to Programmatically Control a Car
#4Does anybody know where the trend is going? Do electric cars have standard buses or are they moving to proprietary (and not published) buses?
Re: An Introduction to the CAN Bus: How to Programmatically Control a Car
#5Does anybody know where the trend is going? Do electric cars have standard buses or are they moving to proprietary (and not published) buses?
Re: An Introduction to the CAN Bus: How to Programmatically Control a Car
#6Interesting - never realized there would be multiple CAN buses in a car. That probably makes it a lot easier to not screw things up - if you know that the medium speed bus is only connected to non-safety-critical systems, then it's easier to trust that when you send out your hand-crafted CAN packets, you're not going to cause anything too drastic to happen.
Re: An Introduction to the CAN Bus: How to Programmatically Control a Car
#7Interesting - never realized there would be multiple CAN buses in a car. That probably makes it a lot easier to not screw things up - if you know that the medium speed bus is only connected to non-safety-critical systems, then it's easier to trust that when you send out your hand-crafted CAN packets, you're not going to cause anything too drastic to happen.
Re: An Introduction to the CAN Bus: How to Programmatically Control a Car
#8Does anybody know where the trend is going? Do electric cars have standard buses or are they moving to proprietary (and not published) buses?
CAN will stay for quite a while, as will LIN. However, higher speed buses (esp. FlexRay and MOST) are very, very slowly being replaced by Automotive Ethernet (which uses a proprietary physical layer, called BroadR-Reach). Where CAN used checksums (additional, application layer checksum in addition to the protocol layer) to prevent tampering (modifying live data), the Ethernet based protocols will use what AUTOSAR cal…