代码搜索:光子计数

找到约 7,260 项符合「光子计数」的源代码

代码结果 7,260
www.eeworm.com/read/28786/874064

plg t0外部计数输入.plg

礦ision2 Build Log Project: D:\桌面\FLY-51S 程序\71-T0外部计数输入\T0外部计数输入.uv2 Project File Date: 05/19/2010 Output:
www.eeworm.com/read/28786/874066

c t0外部计数输入.c

/*----------------------------------------------- 名称:计数器0 论坛:www.doflye.net 编写:shifang 日期:2009.5 修改:无 内容:通过外部按键计数进入中断执行LED取反 ------------------------------------------------*/ #inc
www.eeworm.com/read/32720/887363

vhd 各种功能的计数器.vhd

-- MAX+plus II VHDL Example -- Efficient Counter Inference -- Copyright (c) 1994 Altera Corporation -- download from:www.pld.com.cn & www.fpga.com.cn Library IEEE ; use IEEE.std_logic_1164.all
www.eeworm.com/read/40396/916580

vhd 各种功能的计数器.vhd

-- MAX+plus II VHDL Example -- Efficient Counter Inference -- Copyright (c) 1994 Altera Corporation -- download from:www.pld.com.cn & www.fpga.com.cn Library IEEE ; use IEEE.std_logic_1164.all
www.eeworm.com/read/40397/916581

vhd 各种功能的计数器.vhd

-- MAX+plus II VHDL Example -- Efficient Counter Inference -- Copyright (c) 1994 Altera Corporation -- download from:www.pld.com.cn & www.fpga.com.cn Library IEEE ; use IEEE.std_logic_1164.all
www.eeworm.com/read/26262/956604

opt 9.4.2模拟实现计数器.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.s*; *.src; *.a*) oExt (*.obj) lExt (*.lib) tExt (*.txt; *.h; *.inc) pExt (*.plm) CppX (*.cpp) DaveTm {
www.eeworm.com/read/26262/956606

plg 9.4.2模拟实现计数器.plg

礦ision3 Build Log Project: D:\soloman\文件\写书\51单片机\20111124正式写\第9章\代码\9.4.2模拟实现计数器\9.4.2模拟实现计数器.uv2 Project File Date: 07/02/2012 Output: Build
www.eeworm.com/read/27197/980405

c 00-99计数器.c

//00-99计数器 //共阴极数码管 #include unsigned char code table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; //0-9的段码值 unsigned char Count; //定义无符号变量Count sbit SP1=P3^7; //定义
www.eeworm.com/read/27197/980407

asm 00-99计数器.asm

;=== 00-99计数器 === Count EQU 30H SP1 BIT P3.7 ;定义P3.7为按键 ORG 0000H START:MOV Count,#00H NEXT:MOV A,Count MOV B,#10 DIV AB MOV DPTR,#TABLE ;取表的有效地址