Rev Author Line No. Line
3328 povik 1 /**
2 ******************************************************************************
3 * @file stm32f10x_it.c
4 * @author MCD Application Team
5 * @version V1.0.0
6 * @date 06/19/2009
7 * @brief Main Interrupt Service Routines.
8 * This file provides template for all exceptions handler and
9 * peripherals interrupt service routine.
10 ******************************************************************************
11 * @copy
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 2009 STMicroelectronics</center></h2>
21 */
22  
23 /* Includes ------------------------------------------------------------------*/
24 #include "stm32f10x_it.h"
25  
26 /** @addtogroup Webserver_Demo_uIP
27 * @{
28 */
29  
30 /* Private typedef -----------------------------------------------------------*/
31 /* Private define ------------------------------------------------------------*/
32 /* Private macro -------------------------------------------------------------*/
33 /* Private variables ---------------------------------------------------------*/
34 /* Private function prototypes -----------------------------------------------*/
35 /* Private functions ---------------------------------------------------------*/
36  
37 /******************************************************************************/
38 /* Cortex-M3 Processor Exceptions Handlers */
39 /******************************************************************************/
40  
41 /**
42 * @brief This function handles NMI exception.
43 * @param None
44 * @retval None
45 */
46 void NMI_Handler(void)
47 {
48 }
49  
50 /**
51 * @brief This function handles Hard Fault exception.
52 * @param None
53 * @retval None
54 */
55 void HardFault_Handler(void)
56 {
57 /* Go to infinite loop when Hard Fault exception occurs */
58 while (1)
59 {
60 }
61 }
62  
63 /**
64 * @brief This function handles Memory Manage exception.
65 * @param None
66 * @retval None
67 */
68 void MemManage_Handler(void)
69 {
70 /* Go to infinite loop when Memory Manage exception occurs */
71 while (1)
72 {
73 }
74 }
75  
76 /**
77 * @brief This function handles Bus Fault exception.
78 * @param None
79 * @retval None
80 */
81 void BusFault_Handler(void)
82 {
83 /* Go to infinite loop when Bus Fault exception occurs */
84 while (1)
85 {
86 }
87 }
88  
89 /**
90 * @brief This function handles Usage Fault exception.
91 * @param None
92 * @retval None
93 */
94 void UsageFault_Handler(void)
95 {
96 /* Go to infinite loop when Usage Fault exception occurs */
97 while (1)
98 {
99 }
100 }
101  
102 /**
103 * @brief This function handles SVCall exception.
104 * @param None
105 * @retval None
106 */
107 void SVC_Handler(void)
108 {
109 }
110  
111 /**
112 * @brief This function handles Debug Monitor exception.
113 * @param None
114 * @retval None
115 */
116 void DebugMon_Handler(void)
117 {
118 }
119  
120 /**
121 * @brief This function handles PendSVC exception.
122 * @param None
123 * @retval None
124 */
125 void PendSV_Handler(void)
126 {
127 }
128  
129 /**
130 * @brief This function handles SysTick Handler.
131 * @param None
132 * @retval None
133 */
134 void SysTick_Handler(void)
135 {
136 }
137  
138 /******************************************************************************/
139 /* STM32F10x Peripherals Interrupt Handlers */
140 /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */
141 /* available peripheral interrupt handler's name please refer to the startup */
142 /* file (startup_stm32f10x_xx.s). */
143 /******************************************************************************/
144  
145 /**
146 * @brief This function handles ETH interrupt request.
147 * @param None
148 * @retval None
149 */
150 void ETH_IRQHandler(void)
151 {
152  
153 }
154  
155 /**
156 * @brief This function handles ETH Weke-up interrupt request.
157 * @param None
158 * @retval None
159 */
160 void ETH_WKUP_IRQHandler(void)
161 {
162  
163 }
164 /**
165 * @}
166 */
167  
168  
169 /******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/