代码搜索:脉冲信号

找到约 10,000 项符合「脉冲信号」的源代码

代码结果 10,000
www.eeworm.com/read/7225/109403

asm 12智能脉冲发生器.asm

;智能脉冲发生器源程序-2001年31期12版 out bit p1.6 increase bit p3.2 decrease bit p3.3 hi_fre data 50h lo_fre_hi data 51h lo_fre_lo data 52h lo_state data 53h hi_fre_temp data 54h
www.eeworm.com/read/7268/114144

asm 12智能脉冲发生器.asm

;智能脉冲发生器源程序-2001年31期12版 out bit p1.6 increase bit p3.2 decrease bit p3.3 hi_fre data 50h lo_fre_hi data 51h lo_fre_lo data 52h lo_state data 53h hi_fre_temp data 54h
www.eeworm.com/read/13400/275431

asm 12智能脉冲发生器.asm

;智能脉冲发生器源程序-2001年31期12版 out bit p1.6 increase bit p3.2 decrease bit p3.3 hi_fre data 50h lo_fre_hi data 51h lo_fre_lo data 52h lo_state data 53h hi_fre_temp data 54h
www.eeworm.com/read/16542/678975

c timera实现测量脉冲宽度.c

/*TimerA实现测量脉冲宽度范例 源处:微控设计网 DC / 2005.12./www.microcontrol.cn 1-程序描述 利用MSP430单片机定时器A和捕获/比较功能模块结合使用,实现脉冲宽度的测量。 本例程用到了定时器A的CCI1A端口(例如MSP430F14X的P1.2引脚)作捕获外部输入的脉冲电平跳变,同时结合简单的软件算法就能实现脉冲宽度的测量 ...
www.eeworm.com/read/26198/955315

asm 12智能脉冲发生器.asm

;智能脉冲发生器源程序-2001年31期12版 out bit p1.6 increase bit p3.2 decrease bit p3.3 hi_fre data 50h lo_fre_hi data 51h lo_fre_lo data 52h lo_state data 53h hi_fre_temp data 54h
www.eeworm.com/read/27335/983062

asm 12智能脉冲发生器.asm

;智能脉冲发生器源程序-2001年31期12版 out bit p1.6 increase bit p3.2 decrease bit p3.3 hi_fre data 50h lo_fre_hi data 51h lo_fre_lo data 52h lo_state data 53h hi_fre_temp data 54h
www.eeworm.com/read/34129/1039253

c 源程序-脉冲分频器.c

#include sbit led=P1^1; //中断初始化函数 void tx_init() { TMOD=0x60; TH1=0x9c; TL1=0x9c; ET1=1; EA=1; TR1=1; led=1; } void main() { tx_init(); while(1); } voi