📄 stm32f10x_it.lst
字号:
###############################################################################
# #
# 04/Dec/2008 16:07:56 #
# IAR ARM ANSI C/C++ Compiler V5.11.0.20622/W32 EVALUATION #
# Copyright 1999-2007 IAR Systems. All rights reserved. #
# #
# Cpu mode = thumb #
# Endian = little #
# Source file = E:\ELE\yten\pro\Vector\stm32f10x_it.c #
# Command line = E:\ELE\yten\pro\Vector\stm32f10x_it.c -D EMB_FLASH -lcN #
# E:\ELE\yten\pro\Release\List\ -o #
# E:\ELE\yten\pro\Release\Obj\ --no_cse --no_unroll #
# --no_inline --no_code_motion --no_tbaa --no_clustering #
# --no_scheduling --debug --endian little --cpu Cortex-M3 #
# -e --fpu None --dlib_config "C:\Program Files\IAR #
# Systems\Embedded Workbench 5.0 #
# Evaluation\ARM\INC\DLib_Config_Normal.h" -I #
# E:\ELE\yten\pro\ -I E:\ELE\yten\pro\..\LIBRARY\INC\ -I #
# "C:\Program Files\IAR Systems\Embedded Workbench 5.0 #
# Evaluation\ARM\INC\" -On #
# List file = E:\ELE\yten\pro\Release\List\stm32f10x_it.lst #
# Object file = E:\ELE\yten\pro\Release\Obj\stm32f10x_it.o #
# #
# #
###############################################################################
E:\ELE\yten\pro\Vector\stm32f10x_it.c
1 /******************** (C) COPYRIGHT 2007 STMicroelectronics ********************
2 * File Name : stm32f10x_it.c
3 * Author : MCD Application Team
4 * Version : V1.0
5 * Date : 10/08/2007
6 * Description : Main Interrupt Service Routines.
7 * This file can be used to describe all the exceptions
8 * subroutines that may occur within user application.
9 * When an interrupt happens, the software will branch
10 * automatically to the corresponding routine.
11 * The following routines are all empty, user can write code
12 * for exceptions handlers and peripherals IRQ interrupts.
13 ********************************************************************************
14 * THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
15 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
16 * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
17 * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
18 * CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
19 * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
20 *******************************************************************************/
21
22 /* Includes ------------------------------------------------------------------*/
23 #include "stm32f10x_it.h"
24 #include"ytep.h"
25 #include"ytepfunction.h"
26 //extern void USB_ISR (void);
27 //extern void USB_HIGH_ISR (void);
28 //extern void Tim2Handler (void);
29 /* Private typedef -----------------------------------------------------------*/
30 /* Private define ------------------------------------------------------------*/
31 /* Private macro -------------------------------------------------------------*/
32 /* Private variables ---------------------------------------------------------*/
33 /* Private function prototypes -----------------------------------------------*/
34 /* Private functions ---------------------------------------------------------*/
35
36 /*******************************************************************************
37 * Function Name : NMIException
38 * Description : This function handles NMI exception.
39 * Input : None
40 * Output : None
41 * Return : None
42 *******************************************************************************/
43 void NMIException(void)
44 {
45 }
46
47 /*******************************************************************************
48 * Function Name : HardFaultException
49 * Description : This function handles Hard Fault exception.
50 * Input : None
51 * Output : None
52 * Return : None
53 *******************************************************************************/
54 void HardFaultException(void)
55 {
56 /* Go to infinite loop when Hard Fault exception occurs */
57 asm("nop");
58 GPIOC->ODR^=1;
59 asm("nop");
60 }
61
62 /*******************************************************************************
63 * Function Name : MemManageException
64 * Description : This function handles Memory Manage exception.
65 * Input : None
66 * Output : None
67 * Return : None
68 *******************************************************************************/
69 void MemManageException(void)
70 {
71 /* Go to infinite loop when Memory Manage exception occurs */
72 while (1)
73 {
74 }
75 }
76
77 /*******************************************************************************
78 * Function Name : BusFaultException
79 * Description : This function handles Bus Fault exception.
80 * Input : None
81 * Output : None
82 * Return : None
83 *******************************************************************************/
84 void BusFaultException(void)
85 {
86 /* Go to infinite loop when Bus Fault exception occurs */
87 while (1)
88 {
89 }
90 }
91
92 /*******************************************************************************
93 * Function Name : UsageFaultException
94 * Description : This function handles Usage Fault exception.
95 * Input : None
96 * Output : None
97 * Return : None
98 *******************************************************************************/
99 void UsageFaultException(void)
100 {
101 /* Go to infinite loop when Usage Fault exception occurs */
102 while (1)
103 {
104 }
105 }
106
107 /*******************************************************************************
108 * Function Name : DebugMonitor
109 * Description : This function handles Debug Monitor exception.
110 * Input : None
111 * Output : None
112 * Return : None
113 *******************************************************************************/
114 void DebugMonitor(void)
115 {
116 }
117
118 /*******************************************************************************
119 * Function Name : SVCHandler
120 * Description : This function handles SVCall exception.
121 * Input : None
122 * Output : None
123 * Return : None
124 *******************************************************************************/
125 void SVCHandler(void)
126 {
127 }
128
129 /*******************************************************************************
130 * Function Name : PendSVC
131 * Description : This function handles PendSVC exception.
132 * Input : None
133 * Output : None
134 * Return : None
135 *******************************************************************************/
136 void PendSVC(void)
137 {
138 }
139
140 /*******************************************************************************
141 * Function Name : SysTickHandler
142 * Description : This function handles SysTick Handler.
143 * Input : None
144 * Output : None
145 * Return : None
146 *******************************************************************************/
147 void SysTickHandler(void)
148 {
149 }
150
151 /*******************************************************************************
152 * Function Name : WWDG_IRQHandler
153 * Description : This function handles WWDG interrupt request.
154 * Input : None
155 * Output : None
156 * Return : None
157 *******************************************************************************/
158 void WWDG_IRQHandler(void)
159 {
160 }
161
162 /*******************************************************************************
163 * Function Name : PVD_IRQHandler
164 * Description : This function handles PVD interrupt request.
165 * Input : None
166 * Output : None
167 * Return : None
168 *******************************************************************************/
169 void PVD_IRQHandler(void)
170 {
171 }
172
173 /*******************************************************************************
174 * Function Name : TAMPER_IRQHandler
175 * Description : This function handles Tamper interrupt request.
176 * Input : None
177 * Output : None
178 * Return : None
179 *******************************************************************************/
180 void TAMPER_IRQHandler(void)
181 {
182 }
183
184 /*******************************************************************************
185 * Function Name : RTC_IRQHandler
186 * Description : This function handles RTC global interrupt request.
187 * Input : None
188 * Output : None
189 * Return : None
190 *******************************************************************************/
191 void RTC_IRQHandler(void)
192 {
193 }
194
195 /*******************************************************************************
196 * Function Name : FLASH_IRQHandler
197 * Description : This function handles Flash interrupt request.
198 * Input : None
199 * Output : None
200 * Return : None
201 *******************************************************************************/
202 void FLASH_IRQHandler(void)
203 {
204 }
205
206 /*******************************************************************************
207 * Function Name : RCC_IRQHandler
208 * Description : This function handles RCC interrupt request.
209 * Input : None
210 * Output : None
211 * Return : None
212 *******************************************************************************/
213 void RCC_IRQHandler(void)
214 {
215 }
216
217 /*******************************************************************************
218 * Function Name : EXTI0_IRQHandler
219 * Description : This function handles External interrupt Line 0 request.
220 * Input : None
221 * Output : None
222 * Return : None
223 *******************************************************************************/
224 void EXTI0_IRQHandler(void)
225 {
226 }
227
228 /*******************************************************************************
229 * Function Name : EXTI1_IRQHandler
230 * Description : This function handles External interrupt Line 1 request.
231 * Input : None
232 * Output : None
233 * Return : None
234 *******************************************************************************/
235 void EXTI1_IRQHandler(void)
236 {
237 }
238
239 /*******************************************************************************
240 * Function Name : EXTI2_IRQHandler
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -