Hi,
I am adapting our CAN stack that was implemented on the 49C micro.
in this stack, we setup Auto Bus On when the CAN bus goes into an idle state:
// // setup Auto Bus On and delay time (in clock cycles - default is 0h) // CAN_setAutoBusOnTime(CANA_BASE, 0UL); CAN_enableAutoBusOn(CANA_BASE);
We are currently using SDK 8.4.17.
When the CAN peripheral detects and error, is their can ISR handler that has to be created or will the code jump to an undefined location and possibly sit idle or reset the micro?
We need some help with doing proper CAN bus error handling.
Thanks in advance.