代码搜索:模拟方案

找到约 10,000 项符合「模拟方案」的源代码

代码结果 10,000
www.eeworm.com/read/408548/11383109

c i2cio.c

#include #include "I2C.h" #include "gen.h" #include #define DISABLEINT0 0 bit NoAck = 0; bit BusFault = 0; #if I2cBusType==0 // 定义模拟I2c总线的引脚 sbit SDA=P3^4;
www.eeworm.com/read/407565/11415028

cpp wuziqi.cpp

// C++程序大作业:五子棋模拟 #include #include #include #include #include #include int pane1[225][2]; //定义全局数组用来记录有棋子的位
www.eeworm.com/read/401739/11551382

h serv.h

/** * 文件: serv.h * 作者: PrinceToad,princetoad@tom.com,http://gmm.nease.net * 说明: 中国移动CMPP2.0短消息网关开发接口库 示例工程模拟网关文件 * 版本: 1.3 */ #ifndef CMPP_SERV_H #define CMPP_SERV_H #include "stdafx.h" #in
www.eeworm.com/read/344466/11877407

m mvsb.m

%显示模拟调制的波形及解调方法VSB,文件mvsb.m %信源 close all; clear all; dt=0.001; %时间采样间隔 fm=5; %信源最高频率 fc=20; %载波中心频率 T=5; %信号时长 t=0:dt:T; mt=sqrt(2)*(cos(2*pi
www.eeworm.com/read/151211/12229608

txt 56.txt

使用 kb_event 函数模拟键盘操作 kb_event函数的使用        下面的函数可以利用kb_event实行一些系统操作 Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExt
www.eeworm.com/read/132078/14111183

m ex031900.m

% 第三章: 例 3.19 % 用sinc函数重构信号 % % 离散时间信号 x1(n) Ts = 0.0002; Fs = 1/Ts; n = -25:1:25; nTs = n*Ts; x = exp(-1000*abs(nTs)); % 模拟信号重构 Dt = 0.00005; t = -0.005:Dt:0.005; xa = x * sinc(F
www.eeworm.com/read/128565/14290972

asm io232.asm

;*********************************************************** ;普通IO口模拟RS232串口 占用定时器0中断 ;在TH0,TL0中设置波特率的大小 注意不要开定时器0的中断,这里用的是查询方式 ;*********************************************************** BT_R
www.eeworm.com/read/228858/14359467

bas module3.bas

Attribute VB_Name = "Module3" Public Const KBC_KEY_CMD = &H64 '键盘命令端口 Public Const KBC_KEY_DATA = &H60 '键盘数据端口 Sub MyKeyDown(ByVal vKeyCoad As Long) '这个用来模拟按下键,参数vKeyCoad传入按键的虚拟码 Dim btSca
www.eeworm.com/read/121494/14755441

frm mainform.frm

VERSION 5.00 Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX" Begin VB.Form MainForm Caption = "Call:CTI套卡驱动程序演示程序(模拟中继卡)" ClientHeight = 3750 Clie
www.eeworm.com/read/4698/38818

asm a07.asm

; “验证式” 实验七 中断系统(模拟调试) ;文件名:MCS51\A07.ASM ORG 0000H SJMP MAIN ORG 0013H LJMP INTER1 MAIN: ORL IE,#84H ORL IP,#04H SJMP $ INTER1: NOP NOP RETI