代码搜索:定时报警

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

代码结果 10,000
www.eeworm.com/read/155772/5618996

h globalvardef.h

#include int nExNum;//传递TreeView哪项更改了 unsigned int data[256];//具体每道的数据 unsigned int m_data[256];//具体显示时的缓存数据,根据data[]定时刷新; bool lsSetROILeft;//是否设置的是左面ROI线 bool lsSetROIRight;//是否设置的是
www.eeworm.com/read/154623/5635263

h globalvardef.h

#include int nExNum;//传递TreeView哪项更改了 unsigned int data[256];//具体每道的数据 unsigned int m_data[256];//具体显示时的缓存数据,根据data[]定时刷新; bool lsSetROILeft;//是否设置的是左面ROI线 bool lsSetROIRight;//是否设置的是
www.eeworm.com/read/475902/6768949

asm wonoffp4.asm

;参考程序A : WONOFFP4.ASM 8个LED灯依次循环点亮. $include (c8051f020.inc) ORG 0000H LJMP MAIN ORG 0100H MAIN: MOV SP,#40H MOV WDTCN,#0DEH ;禁止看门狗定时器 MOV WDTCN,
www.eeworm.com/read/475902/6768950

#2 wonoffp4.#2

;参考程序A : WONOFFP4.ASM 8个LED灯依次循环点亮. $include (c8051f020.inc) ORG 0000H LJMP MAIN ORG 0100H MAIN: MOV SP,#40H MOV WDTCN,#0DEH ;禁止看门狗定时器 MOV WDTCN,
www.eeworm.com/read/475902/6768954

#1 wonoffp4.#1

;参考程序A : WONOFFP4.ASM 8个LED灯依次循环点亮. $include (c8051f020.inc) ORG 0000H LJMP MAIN ORG 0100H MAIN: MOV SP,#40H MOV WDTCN,#0DEH ;禁止看门狗定时器 MOV WDTCN,
www.eeworm.com/read/474287/6817439

txt sping.txt

下面我们就来看看spring中的定时任务是如何来工作的。首先先看它的一个配置文件:application-scheduler.xml.
www.eeworm.com/read/472827/6858673

c main.c

// 基于《Stellaris外设驱动库》的例程:定时器32位单次触发示例 // 包含必要的头文件 #include "LED.H" #include #include #include #include #include #in
www.eeworm.com/read/471630/6887310

s timer1init.s

.module Timer1init.c .area text _Timer1init:: ; #include"gp32c.h" ; #define TSTOPBit 5 //定时器计数停止位 ; void Timer1init(void) ; { ; //允许溢出中断、不启动计数、分频因子=64 ; T1SC=0b01100110;
www.eeworm.com/read/393391/8290423

asm 查表.asm

;使用查询方式,查表 ORG 0000H LJMP START ORG 0030H START: MOV DPTR,#TABLE MOV B,#0AH ;以下为延时中断10次,为0.5s MOV TMOD,#10H ;定时器1工作于模式1 MOV TH1
www.eeworm.com/read/393391/8290860

asm 救护车.asm

ORG 0000H LJMP GAO ORG 0030H GAO: MOV B,#500 ;中断次数 对应频率500Hz,500,2000均应写作高低位 MOV TMOD,#01H ;定时器0工作于模式1 MOV TH0,# 0F8H