Question
Is there a simple and safe way to disable CANbus receive Interrupt or enable CANbus receive Interrupt
Posted on September 15, 2016 at 05:03
Hi guys:
I just want to disable the Can receive Interrupt when processing the important datas and after then enable it again. should i config the can baud rate or other registersagain ,or just change the below part:just change this:NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 2;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_InitStructure.NVIC_IRQChannel = USB_LP_CAN1_RX0_IRQn;
NVIC_Init(&NVIC_InitStructure); Thanks