stm32f1xx_it.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file stm32f1xx_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 __STM32F1xx_IT_H
  21. #define __STM32F1xx_IT_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Private includes ----------------------------------------------------------*/
  26. /* USER CODE BEGIN Includes */
  27. #include "usart.h"
  28. #include "stm32f1xx_hal_uart.h"
  29. #include <string.h>
  30. #include "comm_car_485.h"
  31. /* USER CODE END Includes */
  32. /* Exported types ------------------------------------------------------------*/
  33. /* USER CODE BEGIN ET */
  34. /* USER CODE END ET */
  35. /* Exported constants --------------------------------------------------------*/
  36. /* USER CODE BEGIN EC */
  37. /* USER CODE END EC */
  38. /* Exported macro ------------------------------------------------------------*/
  39. /* USER CODE BEGIN EM */
  40. /* USER CODE END EM */
  41. /* Exported functions prototypes ---------------------------------------------*/
  42. void NMI_Handler(void);
  43. void HardFault_Handler(void);
  44. void MemManage_Handler(void);
  45. void BusFault_Handler(void);
  46. void UsageFault_Handler(void);
  47. void DebugMon_Handler(void);
  48. void DMA1_Channel3_IRQHandler(void);
  49. void TIM1_UP_IRQHandler(void);
  50. void TIM2_IRQHandler(void);
  51. void TIM4_IRQHandler(void);
  52. void USART1_IRQHandler(void);
  53. void USART3_IRQHandler(void);
  54. void UART4_IRQHandler(void);
  55. void DMA2_Channel3_IRQHandler(void);
  56. /* USER CODE BEGIN EFP */
  57. /* USER CODE END EFP */
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif /* __STM32F1xx_IT_H */