资源简介
ADF4106实例代码,这些代码仅供参考,相互学习,相互促进
代码片段和文件信息
/* Function Pointers for Interrupts */
typedef void (* tyVctHndlr) (void);
tyVctHndlr IRQ = (tyVctHndlr)0x0;
tyVctHndlr SWI = (tyVctHndlr)0x0;
tyVctHndlr FIQ = (tyVctHndlr)0x0;
tyVctHndlr UNDEF = (tyVctHndlr)0x0;
tyVctHndlr PABORT = (tyVctHndlr)0x0;
tyVctHndlr DABORT = (tyVctHndlr)0x0;
void IRQ_Handler (void) __irq;
void SWI_Handler (void) __irq;
void FIQ_Handler (void) __irq;
void Undef_Handler (void) __irq;
void PAbt_Handler (void) __irq;
void DAbt_Handler (void) __irq;
void IRQ_Handler(void) __irq
{
if ( *IRQ !=0x00)
{
IRQ();
}
}
void FIQ_Handler(void) __irq
{
if ( *FIQ !=0x00)
{
FIQ();
}
}
void SWI_Handler(void) __irq
{
if ( *SWI !=0x00)
{
SWI();
}
}
void Undef_Handler(void)__irq
{
if ( *UNDEF !=0x00)
{
UNDEF();
}
}
void PAbt_Handler(void) __irq
{
if ( *PABORT !=0x00)
{
PABORT();
}
}
void DAbt_Handler(void) __irq
{
if ( *DABORT !=0x00)
{
DABORT();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-11-17 22:11 ExampleCode_PLL_ADF4106\
文件 14628 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADF4106.axf
文件 4318 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADF4106.hex
文件 15016 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADF4106.htm
文件 300 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADF4106.lnp
文件 48528 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADF4106.map
文件 2690 2011-01-26 17:25 ExampleCode_PLL_ADF4106\ADF4106.plg
文件 988 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADF4106.tra
文件 58766 2011-01-26 17:21 ExampleCode_PLL_ADF4106\ADF4106.uvopt
文件 14638 2011-01-26 14:59 ExampleCode_PLL_ADF4106\ADF4106.uvproj
文件 2779 2011-01-24 16:04 ExampleCode_PLL_ADF4106\ADF4106_IO.C
文件 2733 2011-01-26 17:21 ExampleCode_PLL_ADF4106\ADF4106_IO.h
文件 1091 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADF4106_Target 1.dep
文件 58766 2011-01-26 17:21 ExampleCode_PLL_ADF4106\ADF4106_uvopt.bak
文件 14812 2011-01-26 13:56 ExampleCode_PLL_ADF4106\ADF4106_uvproj.bak
文件 42241 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADuC702x.lst
文件 3044 2011-01-26 17:14 ExampleCode_PLL_ADF4106\ADuC702x.o
文件 16353 2009-05-07 14:40 ExampleCode_PLL_ADF4106\ADuC702x.s
文件 2811 2011-01-26 17:05 ExampleCode_PLL_ADF4106\MAIN.c
文件 651 2011-01-26 17:14 ExampleCode_PLL_ADF4106\Target 1.BAT
文件 9761 2011-01-26 13:54 ExampleCode_PLL_ADF4106\adf4106_io.crf
文件 449 2011-01-26 13:54 ExampleCode_PLL_ADF4106\adf4106_io.d
文件 28792 2011-01-26 13:54 ExampleCode_PLL_ADF4106\adf4106_io.o
文件 159 2011-01-26 17:14 ExampleCode_PLL_ADF4106\aduc702x._ia
文件 171 2011-01-26 17:14 ExampleCode_PLL_ADF4106\irq_arm.__i
文件 1019 2009-05-07 14:42 ExampleCode_PLL_ADF4106\irq_arm.c
文件 517 2011-01-26 17:14 ExampleCode_PLL_ADF4106\irq_arm.crf
文件 22 2011-01-26 17:14 ExampleCode_PLL_ADF4106\irq_arm.d
文件 7964 2011-01-26 17:14 ExampleCode_PLL_ADF4106\irq_arm.o
文件 159 2011-01-26 17:14 ExampleCode_PLL_ADF4106\main.__i
文件 10048 2011-01-26 17:14 ExampleCode_PLL_ADF4106\main.crf
............此处省略2个文件信息
评论
共有 条评论