⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vector_63b.c

📁 st7单片机关于slave方式I2C总线设计的源程序,使用ST7单片机的很有用
💻 C
字号:
/*
*******************************************************************************
COPYRIGHT 2003 STMicroelectronics
Source File Name : vector_63B.c
Group            : IPSW, CMG - IPDF
Author           : MCD Application Team

Date First Issued: 5/3/2002
********************************Documentation**********************************
General Purpose - Interrupt mapping file for ST72F63
********************************RevisionHistory********************************
_______________________________________________________________________________
Date :5/3/2002  	Release:1.0
Date :23/9/2003  	Release:2.0
******************************************************************************/
#define NULL 0
extern void _stext(); 					              /* Reset */

/* Add the interrupt routines used in the application */

//extern void SCI_IT_Routine();  			        	/* SCI */
//extern void TIMERA_IT_Routine(); 	            	 /* TIMERA */
//extern void USB_IT_Routine();  		        		/* USB */
extern void I2Cs_User_IT_Routine(void);                                 /* I2C */
//extern void USB_Suspend_IT_Routine();  		        /* USB */
//extern void FLASH_IT_Routine();  		              /* FLASH */
//extern void EI_IT_Routine();           /* External interrupt */
//extern void TRAP_IT_Routine();           		       /* TRAP */

void (* const _vectab[])() = { 
	/* remove the NULL definitions for the peripherals used in application */
    NULL,//USB_IT_Routine,                                      	  /* USB */
	NULL,//SCI_IT_Routine,                                            /* SCI */
	I2Cs_User_IT_Routine,                                            /* I2C */
	NULL,//TIMERA_IT_Routine,                                       /* Timer */
	NULL,//EI_IT_Routine,                              /* External Interrupt */
	NULL,//USB_Suspend_IT_Routine,                            /* USB_Suspend */
	NULL,//FLASH_IT_Routine,                                      	/* Flash */
	NULL,//TRAP_IT_Routine,                                          /* TRAP */						
	_stext								   						    /* Reset */
	};
 
/******************** (c) 2003  ST Microelectronics *********** END OF FILE **/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -