PIC18F4550 USB设计原理图和源程序

源代码在线查看: interrupt.c

软件大小: 764 K
上传用户: 2007qq小叶
关键词: 4550 nbsp PIC USB
下载地址: 免注册下载 普通下载 VIP

相关代码

				/******************************************************************************
				* PIC USB
				* interrupt.c
				******************************************************************************/
				
				/** I N C L U D E S **********************************************************/
				#include 
				#include "system/typedefs.h"
				#include "system/interrupt/interrupt.h"
				
				/** V A R I A B L E S ********************************************************/
				
				/** I N T E R R U P T  V E C T O R S *****************************************/
				
				#pragma code high_vector=0x08
				void interrupt_at_high_vector(void)
				{
				    _asm goto high_isr _endasm
				}
				#pragma code
				
				#pragma code low_vector=0x18
				void interrupt_at_low_vector(void)
				{
				    _asm goto low_isr _endasm
				}
				#pragma code
				
				/** D E C L A R A T I O N S **************************************************/
				/******************************************************************************
				 * Function:        void high_isr(void)
				 * PreCondition:    None
				 * Input:
				 * Output:
				 * Side Effects:
				 * Overview:
				 *****************************************************************************/
				#pragma interrupt high_isr
				void high_isr(void)
				{
				}
				
				/******************************************************************************
				 * Function:        void low_isr(void)
				 * PreCondition:    None
				 * Input:
				 * Output:
				 * Side Effects:
				 * Overview:
				 *****************************************************************************/
				#pragma interruptlow low_isr
				void low_isr(void)
				{
				}
				#pragma code
				
				/** EOF interrupt.c **********************************************************/
							

相关资源