代码搜索:定时报警

找到约 10,000 项符合「定时报警」的源代码

代码结果 10,000
www.eeworm.com/read/309835/13663835

c evpwm.c

#include "DSP28_Device.h" #include "DSP28_Ev.h" #include "motor.h" void Init_eva_pwm() { //初始化定时器1和pwm1~6的输出 EvaRegs.T1PR = 59; // 设定对电流的采样采样频率20K EvaRegs.T1CNT = 0x0000;
www.eeworm.com/read/309408/13671996

plg t0_test.plg

礦ision2 Build Log Project: C:\Documents and Settings\cbx\桌面\定时器0使用例程\T0_C51\T0_TEST.uv2 Project File Date: 05/23/2004 Output: Build target 'Ta
www.eeworm.com/read/308468/13700594

asm times.asm

ORG 0000H LJMP START ORG 001BH ;定时计数器1中断入口地址 LJMP CLOCK ORG 0030H START: MOV SP , #50H ;设置堆栈 MOV TL1 , #018H ;FOSC=6MHZ,则一个机器周期为2us MOV TH1 , #0FCH
www.eeworm.com/read/304476/13793461

c text1.c

#include #include Uart_Init(); main() { Uart_Init(); ET0=1; /* 打开定时器0中断 */ EA=1; /* 全局中断允许 */ PT0=0; /* INT0为低优先级 */ TMOD=0x00; TF0=1; TR0=1; while(1); /* 无限循环
www.eeworm.com/read/303308/13818536

plg 23.plg

礦ision2 Build Log Project: C:\Documents and Settings\Administrator\桌面\单片机与嵌入式系统实验\定时计数器\23.uv2 Project File Date: 04/16/2007 Output: Build tar
www.eeworm.com/read/300904/13882659

linux ͩ-

Linux 指令大全(2) 名称 : at 使用权限 : 所有使用者 使用方式 : at -V [-q queue] [-f file] [-mldbv] TIME 说明 : at 可以让使用者指定在 TIME 这个特定时刻执行某个程式或指令,TIME 的格式是 HH:MM其中的 HH 为小时,MM 为分钟,甚至你也可以指定 am, pm, midnight, noon
www.eeworm.com/read/151225/5685228

plg 3.plg

礦ision2 Build Log Project: F:\有用资料\电子工具\A\单片机\定时器\中断方式2ms方波\3.uv2 Project File Date: 02/18/2003 Output:
www.eeworm.com/read/142200/5765831

plg 3.plg

礦ision2 Build Log Project: F:\有用资料\电子工具\A\单片机\定时器\中断方式2ms方波\3.uv2 Project File Date: 02/18/2003 Output:
www.eeworm.com/read/310538/6303366

c second.c

#include #include "16x2_lcd.h" unsigned char ms; void Second_Initial() //使用定时器0; { EA=1; ET0=1; TMOD=0x01; TF0=0; TH0=0x3c; //中断一次需50ms TL0=0xaf;
www.eeworm.com/read/487537/6515242

c counter60.c

/*60s计数器,每一分钟LED反相1次*/ //===声明区=========================== #include #define SEG P2 #define SCANP P1 sbit LED=P0^7; /*声明T0定时相关声明*/ #define count_M1 50000 #define TH_M1 (65536-count_M1