STM32F4xx_HAL_Driver  1.8.3

Interrupts management. More...

+ Collaboration diagram for Interrupts management:

Functions

HAL_StatusTypeDef HAL_CAN_ActivateNotification (CAN_HandleTypeDef *hcan, uint32_t ActiveITs)
 Enable interrupts. More...
 
HAL_StatusTypeDef HAL_CAN_DeactivateNotification (CAN_HandleTypeDef *hcan, uint32_t InactiveITs)
 Disable interrupts. More...
 
void HAL_CAN_IRQHandler (CAN_HandleTypeDef *hcan)
 Handles CAN interrupt request. More...
 

Detailed Description

Interrupts management.

  ==============================================================================
                       ##### Interrupts management #####
  ==============================================================================
    [..]  This section provides functions allowing to:
      (+) HAL_CAN_ActivateNotification      : Enable interrupts
      (+) HAL_CAN_DeactivateNotification    : Disable interrupts
      (+) HAL_CAN_IRQHandler                : Handles CAN interrupt request

Function Documentation

◆ HAL_CAN_ActivateNotification()

HAL_StatusTypeDef HAL_CAN_ActivateNotification ( CAN_HandleTypeDef hcan,
uint32_t  ActiveITs 
)

Enable interrupts.

Parameters
hcanpointer to an CAN_HandleTypeDef structure that contains the configuration information for the specified CAN.
ActiveITsindicates which interrupts will be enabled. This parameter can be any combination of
  • CAN_Interrupts.
Return values
HALstatus

Definition at line 1661 of file stm32f4xx_hal_can.c.

◆ HAL_CAN_DeactivateNotification()

HAL_StatusTypeDef HAL_CAN_DeactivateNotification ( CAN_HandleTypeDef hcan,
uint32_t  InactiveITs 
)

Disable interrupts.

Parameters
hcanpointer to an CAN_HandleTypeDef structure that contains the configuration information for the specified CAN.
InactiveITsindicates which interrupts will be disabled. This parameter can be any combination of
  • CAN_Interrupts.
Return values
HALstatus

Definition at line 1694 of file stm32f4xx_hal_can.c.

◆ HAL_CAN_IRQHandler()

void HAL_CAN_IRQHandler ( CAN_HandleTypeDef hcan)

Handles CAN interrupt request.

Parameters
hcanpointer to a CAN_HandleTypeDef structure that contains the configuration information for the specified CAN.
Return values
None

Definition at line 1725 of file stm32f4xx_hal_can.c.