Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that in CAN controller if the error count reaches some threshold(say 255), Bus off will occur which menas that particular CAN node will get switched off from the CAN network. So there wont be any communication at all. But What if the above said scenario happens while the Car is moving which contains the ECU(includes CAN controller)?

Is there any auto recovery mechanism in CAN controller to avoid above any situation?

share|improve this question

4 Answers

During BusOff, the node will be isolated.

CAN waits for mandatory time period 128x11 bits of time,
and then tries to re-initialize the node.

share|improve this answer

When Bus-off occurs then the CAN network isolates that node and then resets that node which can able to start communication.

This is my thinking

http://rasmiranjanbabuknols.wordpress.com/

share|improve this answer
How CAN node will restart if the node is already reset? – Jeganraj Dec 30 '11 at 14:07
@Jeganraj:- CAN has self reset algorithm. Go to below link, gaw.ru/data/Interface/CAN_BUS.PDF Read the paragraph Part A - Page 9. You will have better idea. – Rasmi Ranjan Nayak Apr 18 '12 at 12:17

Nothing spectacular will happen, even if the Engine Control Unit looses CAN communication. The car will continue running.

share|improve this answer

As You mentioned, After reaching specific error count, That node gets disconnected/prohibited from Transmitting anything on bus.This is description for Bus side.

On controller side, Every CAN Controller generates Interrupt on BUS_OFF. It is Controller's responsibility that it should reset CAN Controller and bring back to normal state.

This is strictly followed for Every CAN controller in any Car. And This all happens in few mSecs... So for Driver, Nothing happens!

share|improve this answer
It is also important to add that no engine-critical comunication takes place via CAN bus communication, so the engine continues to run (once it was started) even if CAN network goes completely offline. – jurij Feb 5 at 19:32
I doubt on that @jurij, Coz Engine uses Same CAN bus and CAN is pretty robust. – Swanand Purankar Feb 6 at 5:21
Yes it does, but none of the communication is critical for engine operation. You might get ABS, ESP, Airbag, Power Steering Wheel, Instrument Cluster etc. offline, but the engine will still be running. – jurij Feb 6 at 23:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.