/*
** ###################################################################
**
** The interrupt service routine(s) must be implemented
** by user in one of the following user modules.
**
** If the "Generate ISR" option is enabled, Processor Expert generates
** ISR templates in the CPU event module.
**
** User modules:
** VCU.c
** Events.c
**
** ###################################################################
#pragma CODE_SEG __NEAR_SEG NON_BANKED
ISR(can0_receive_isr)
{
// NOTE: The routine should include the following actions to obtain
// correct functionality of the hardware.
//
// The ISR is invoked by RXF flag. The RXF flag is cleared
// if a "1" is written to the flag in CAN0RFLG register.
// Example: CAN0RFLG = CAN0RFLG_RXF_MASK;
}
#pragma CODE_SEG DEFAULT
*/