Hello,i disable the interuppt after its execution is it allowed?void EXTI4_IRQHandler(void)
{
// Clear interrupt
__HAL_GPIO_EXTI_CLEAR_IT(SYNC_UC_PIN);
// call function
function();// the function enables an other interrupt of the same pri...
CAN RX1 interrupt it does not work. You do not have to change the filters.I found an alternative solution for not triggering the interrupt:At CubeMX go at Connectivity->CAN->Configuration->NVIC-> -USB low priority or CAN RX0 interrupt (activate) -CA...
Hello, i have the same configuration Suryaprakash2002. CAN RX does not trigger also for me. I do not know what to do. CAN TX transmit well, CAN RX does not trigger. The scope shows the recieved CAN at the CAN_RX PA8 PIN. What i noticed is that after ...
Hi,If my system is ready i enable the interrupt EXTI4_IRQn . I trigger this interrupt EXTI4_IRQn in worst case every 300Hz and it comes through only when the system is ready, that means Enable HAL_NVIC_EnableIRQ(EXTI4_IRQn). As the interrupt happens ...
When i trigger the SYNC_UC_PIN in the seccond case, with the disabling interrupt at first place in handler.Then the other interrupt enabling in the function does not occurs .void function(void)
{
..
HAL_NVIC_EnableIRQ(ADC_IRQn);
..
}The SYNC_UC_PIN t...