代码搜索:脉冲信号
找到约 10,000 项符合「脉冲信号」的源代码
代码结果 10,000
www.eeworm.com/read/230595/14280979
c ds1820.c
#include "DS1820.h"
float t;
unsigned char c[2];
void delay(uint t) /* 延时t毫秒 */
{
uint i;
while(t--)
{
for (i=0;i
www.eeworm.com/read/230083/14306478
h motormain.h
#ifndef uchar
#define uchar unsigned char
#endif
#ifndef uint
#define uint unsigned int
#endif
//8个舵机转动度数
extern uint MotorAngle[8];
//接收到的舵机控制数组 分别为位选,度数高字节,度数低字节,转动脉冲周期数
extern uchar
www.eeworm.com/read/226464/14464854
asm parallel to serial.asm
PL BIT P1.0
ORG 00H
START: CLR PL
SETB PL ;发送移位脉冲
MOV SCON,#10H ;允许串行口接收数据
WAIT: JNB RI,WAIT
MOV A,SBUF ;读取数据
CLR RI ;清除接收中断标志
MOV P0,A
www.eeworm.com/read/220143/14850073
asm parallel to serial.asm
PL BIT P1.0
ORG 00H
START: CLR PL
SETB PL ;发送移位脉冲
MOV SCON,#10H ;允许串行口接收数据
WAIT: JNB RI,WAIT
MOV A,SBUF ;读取数据
CLR RI ;清除接收中断标志
MOV P0,A
www.eeworm.com/read/211606/15176714
asv hunpin.asv
%
%混频
%
function y1=hunpin(x,F2);
fs=10^8; %采样频率100M
Ts=1/fs;
T=0.00003; %脉冲重复周期30微秒
t=0:Ts:T-Ts;
N=length(x);
y=x.*cos(2*pi*F2*t);
www.eeworm.com/read/2264/16554
asm parallel to serial.asm
PL BIT P1.0
ORG 00H
START: CLR PL
SETB PL ;发送移位脉冲
MOV SCON,#10H ;允许串行口接收数据
WAIT: JNB RI,WAIT
MOV A,SBUF ;读取数据
CLR RI ;清除接收中断标志
MOV P0,A
www.eeworm.com/read/8474/148236
c celiang.c
//实例54-2:测量负脉冲宽度
#include //包含51单片机寄存器定义的头文件
sbit u=P3^2; //将u位定义为P3.2
/*******************************************
函数功能:主函数
******************************************/
void main(
www.eeworm.com/read/12173/239764
c celiang.c
//实例54-2:测量负脉冲宽度
#include //包含51单片机寄存器定义的头文件
sbit u=P3^2; //将u位定义为P3.2
/*******************************************
函数功能:主函数
******************************************/
void main(
www.eeworm.com/read/18002/770054
txt pwm.txt
module top(clk,rst,code_pulse,pwm_out);
input clk;//1mhz
input rst;
output pwm_out;
input code_pulse;码盘的脉冲
reg [31:0] duty_cycle_r;
reg [31:0] counter;
reg pwm_out;
parameter clock
www.eeworm.com/read/19087/809762
asm parallel to serial.asm
PL BIT P1.0
ORG 00H
START: CLR PL
SETB PL ;发送移位脉冲
MOV SCON,#10H ;允许串行口接收数据
WAIT: JNB RI,WAIT
MOV A,SBUF ;读取数据
CLR RI ;清除接收中断标志
MOV P0,A