stm32l4xx_it.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file stm32l4xx_it.h
  5. * @brief This file contains the headers of the interrupt handlers.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2024 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* USER CODE END Header */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef __STM32L4xx_IT_H
  21. #define __STM32L4xx_IT_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Private includes ----------------------------------------------------------*/
  26. /* USER CODE BEGIN Includes */
  27. /* USER CODE END Includes */
  28. /* Exported types ------------------------------------------------------------*/
  29. /* USER CODE BEGIN ET */
  30. /* USER CODE END ET */
  31. /* Exported constants --------------------------------------------------------*/
  32. /* USER CODE BEGIN EC */
  33. void uart3_dma_idle_CircleBufhandler(void);
  34. void parse_uart1_command(uint8_t *buf);
  35. /* USER CODE END EC */
  36. /* Exported macro ------------------------------------------------------------*/
  37. /* USER CODE BEGIN EM */
  38. /* USER CODE END EM */
  39. /* Exported functions prototypes ---------------------------------------------*/
  40. void NMI_Handler(void);
  41. void HardFault_Handler(void);
  42. void MemManage_Handler(void);
  43. void BusFault_Handler(void);
  44. void UsageFault_Handler(void);
  45. void DebugMon_Handler(void);
  46. void RTC_WKUP_IRQHandler(void);
  47. void DMA1_Channel2_IRQHandler(void);
  48. void DMA1_Channel3_IRQHandler(void);
  49. void DMA1_Channel4_IRQHandler(void);
  50. void DMA1_Channel5_IRQHandler(void);
  51. void DMA1_Channel6_IRQHandler(void);
  52. void DMA1_Channel7_IRQHandler(void);
  53. void CAN1_TX_IRQHandler(void);
  54. void CAN1_RX0_IRQHandler(void);
  55. void EXTI9_5_IRQHandler(void);
  56. void USART1_IRQHandler(void);
  57. void USART2_IRQHandler(void);
  58. void USART3_IRQHandler(void);
  59. void TIM6_DAC_IRQHandler(void);
  60. /* USER CODE BEGIN EFP */
  61. /* USER CODE END EFP */
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65. #endif /* __STM32L4xx_IT_H */