代码搜索:Timer0
找到约 1,870 项符合「Timer0」的源代码
代码结果 1,870
www.eeworm.com/read/186636/8921437
plg timer0.plg
礦ision2 Build Log
Project:
C:\software\实验板\试验例程\C\Timer0\Timer0.uv2
Project File Date: 07/25/2006
Output:
Build target 'Target 1'
assembling
www.eeworm.com/read/377162/9291875
_c timer0._c
#include
#include
extern void spark(unsigned char pos,unsigned char num);
unsigned char LedNum[8]={9,8,7,6,5,4,3,2};
#pragma interrupt_handler timer0:10
void timer0(void)
www.eeworm.com/read/377162/9291933
c timer0.c
#include
#include
extern void spark(unsigned char pos,unsigned char num);
unsigned char LedNum[8]={8,7,6,5,4,3,2,1};
#pragma interrupt_handler timer0:10
void timer0(void)
www.eeworm.com/read/377162/9291975
bak timer0.c.bak
#include
#include
extern void spark(unsigned char pos,unsigned char num);
unsigned char LedNum[8]={8,7,6,5,4,3,2,1};
#pragma interrupt_handler timer0:10
void timer0(void)
www.eeworm.com/read/377162/9292291
s timer0.s
.module Timer0.c
.area vector(rom, abs)
.org 18
rjmp _timer0
.area data(ram, con, rel)
L2:
.blkb 1
.area idata
.byte 0
.area data(ram, con, rel)
.area text(rom, con, rel)
.dbfile
www.eeworm.com/read/375407/9361133
asm exec066.asm
ORG 0000H
AJMP START
ORG 000BH
AJMP TIMER0 ;定时器0的中断处理
ORG 30H
START:
MOV SP,#5FH
MOV TMOD,#00000101B ;定时/计数器1作计数用,模式1,0不用全置0
MOV TH0,#0FFH
MOV TL0,#0FAH ;预置值,要求每计到6个脉冲即为一个事件
SETB EA
S
www.eeworm.com/read/373004/9479786
c 2-2.c
#include
sbit LED=P1^7;
main()
{
TMOD=0X01;
TH0=0x0d8;
TL0=0x0f0;
EA=1;
ET0=1;
TR0=1;
while(1);
}
void timer0() interrupt 1
{
TH0=0x0d8;
TL0=0x0f0;
LED=!LED;
}
www.eeworm.com/read/372508/9506882
asm exec066.asm
ORG 0000H
AJMP START
ORG 000BH
AJMP TIMER0 ;定时器0的中断处理
ORG 30H
START:
MOV SP,#5FH
MOV TMOD,#00000101B ;定时/计数器1作计数用,模式1,0不用全置0
MOV TH0,#0FFH
MOV TL0,#0FAH ;预置值,要求每计到6个脉冲即为一个事件
SETB EA
S
www.eeworm.com/read/363482/9949281
sdi timer0-0.sdi
,,, ORG 00H
0000,02 00 30,, JMP MAIN
,,, ORG 30H
0030,75 89 00,MAIN,MAIN: MOV TMOD,#00H ;设置TIMER0工作在MODE0
0033,7C 00,, MOV R4,#00H ;记数指针初值
,,,;
www.eeworm.com/read/163682/10149661
4th stepper.4th
\ Stepper code by Steven Sarns ... placed in the Public Domain
\ Timer 0 is used as prescaler from 1 MHz down to lower freq.
\ The output of timer 0 is sent to gated timer 1. The gate is
\