at32f403a_407_int.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. **************************************************************************
  3. * @file at32f403a_407_int.h
  4. * @brief header file of main interrupt service routines.
  5. **************************************************************************
  6. * Copyright notice & Disclaimer
  7. *
  8. * The software Board Support Package (BSP) that is made available to
  9. * download from Artery official website is the copyrighted work of Artery.
  10. * Artery authorizes customers to use, copy, and distribute the BSP
  11. * software and its related documentation for the purpose of design and
  12. * development in conjunction with Artery microcontrollers. Use of the
  13. * software is governed by this copyright notice and the following disclaimer.
  14. *
  15. * THIS SOFTWARE IS PROVIDED ON "AS IS" BASIS WITHOUT WARRANTIES,
  16. * GUARANTEES OR REPRESENTATIONS OF ANY KIND. ARTERY EXPRESSLY DISCLAIMS,
  17. * TO THE FULLEST EXTENT PERMITTED BY LAW, ALL EXPRESS, IMPLIED OR
  18. * STATUTORY OR OTHER WARRANTIES, GUARANTEES OR REPRESENTATIONS,
  19. * INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
  21. *
  22. **************************************************************************
  23. */
  24. /* define to prevent recursive inclusion -------------------------------------*/
  25. #ifndef __AT32F403A_407_INT_H
  26. #define __AT32F403A_407_INT_H
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. /* includes ------------------------------------------------------------------*/
  31. #include "at32f403a_407.h"
  32. /* exported types ------------------------------------------------------------*/
  33. /* exported constants --------------------------------------------------------*/
  34. /* exported macro ------------------------------------------------------------*/
  35. /* exported functions ------------------------------------------------------- */
  36. void NMI_Handler(void);
  37. void HardFault_Handler(void);
  38. void MemManage_Handler(void);
  39. void BusFault_Handler(void);
  40. void UsageFault_Handler(void);
  41. void SVC_Handler(void);
  42. void DebugMon_Handler(void);
  43. void PendSV_Handler(void);
  44. void SysTick_Handler(void);
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif