interrupt_vector.c
来自「基于ST72324设计的汽车无钥匙开门源程序」· C语言 代码 · 共 37 行
C
37 行
/* BASIC INTERRUPT VECTORS TABLE FOR ST7 devices
* Copyright (c) 2002-2005 STMicroelectronics
*/
#include "Subroutine.h"
extern void _stext(); /* startup routine */
@interrupt void NonHandledInterrupt (void)
{
/* in order to detect unexpected events during development,
it is recommended to set a breakpoint on the following instruction
*/
return;
}
/* Interrupt vector table, to be linked at the address
0xFFE0 (in ROM) */
void (* const _vectab[])() = {
NonHandledInterrupt, /* 0xFFE0 */
NonHandledInterrupt, /* 0xFFE2 */
NonHandledInterrupt, /* 0xFFE4 */
SCIINT, /* 0xFFE6 */
ReceiverInt, /* 0xFFE8 */
NonHandledInterrupt, /* 0xFFEA */
NonHandledInterrupt, /* 0xFFEC */
NonHandledInterrupt, /* 0xFFEE */
NonHandledInterrupt, /* 0xFFF0 */
NonHandledInterrupt, /* 0xFFF2 */
NonHandledInterrupt, /* 0xFFF4 */
NonHandledInterrupt, /* 0xFFF6 */
ClockGenerator, /* 0xFFF8 */
NonHandledInterrupt, /* 0xFFFA */
NonHandledInterrupt, /* Trap vector */
_stext, /* Reset Vector */
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?