stm32f10x_it.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**
  2. ******************************************************************************
  3. * @file GPIO/IOToggle/stm32f10x_it.c
  4. * @author MCD Application Team
  5. * @version V3.5.0
  6. * @date 08-April-2011
  7. * @brief Main Interrupt Service Routines.
  8. * This file provides template for all exceptions handler and peripherals
  9. * interrupt service routine.
  10. ******************************************************************************
  11. * @attention
  12. *
  13. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  14. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
  15. * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
  16. * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
  17. * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
  18. * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  19. *
  20. * <h2><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h2>
  21. ******************************************************************************
  22. */
  23. /* Includes ------------------------------------------------------------------*/
  24. #include "stm32f10x_it.h"
  25. volatile uint8_t rfIntRequest = 0;
  26. void NMI_Handler(void)
  27. {
  28. }
  29. void HardFault_Handler(void)
  30. {
  31. /* Go to infinite loop when Hard Fault exception occurs */
  32. while (1)
  33. {
  34. }
  35. }
  36. void MemManage_Handler(void)
  37. {
  38. /* Go to infinite loop when Memory Manage exception occurs */
  39. while (1)
  40. {
  41. }
  42. }
  43. void BusFault_Handler(void)
  44. {
  45. /* Go to infinite loop when Bus Fault exception occurs */
  46. while (1)
  47. {
  48. }
  49. }
  50. void UsageFault_Handler(void)
  51. {
  52. /* Go to infinite loop when Usage Fault exception occurs */
  53. while (1)
  54. {
  55. }
  56. }
  57. void SVC_Handler(void)
  58. {
  59. }
  60. void DebugMon_Handler(void)
  61. {
  62. }
  63. void PendSV_Handler(void)
  64. {
  65. }
  66. void SysTick_Handler(void)
  67. {
  68. }
  69. /******************************************************************************/
  70. /* STM32F10x Peripherals Interrupt Handlers */
  71. /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */
  72. /* available peripheral interrupt handler's name please refer to the startup */
  73. /* file (startup_stm32f10x_xx.s). */
  74. /******************************************************************************/