虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

USB接口<b>仿真程序</b>

  • USB接口控制器参考设计,xilinx提供VHDL代码 us

    USB接口控制器参考设计,xilinx提供VHDL代码 usb xilinx vhdl ;  This program is free software; you can redistribute it and/or modify ;  it under the terms of the GNU General Public License as published by ;  the Free Software Foundation; either version 2 of the License, or ;  (at your option) any later version. ;      ;  This program is distributed in the hope that it will be useful, ;  but WITHOUT ANY WARRANTY; without even the implied warranty of ;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the ;  GNU General Public License for more details. ;      ;  You should have received a copy of the GNU General Public License ;  along with this program; if not, write to the Free Software ;  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    标签: xilinx VHDL USB us

    上传时间: 2013-10-29

    上传用户:zhouchang199

  • Proteus实例集锦(包括电路图.仿真程序,各种各样的电路

    Proteus实例集锦(包括电路图.仿真程序,各种各样的电路):4x4键盘,51单片机12864大液晶屏proteus仿真,8253可编程定时器计数器,窃听器(使用PROTEUS串口例子)V1.0,电子琴和倒计时播放音乐,电压电流转换电路,单片机设计2008奥运会,Schematic模型创建方法等资料。

    标签: Proteus 实例集锦 仿真程序 电路图

    上传时间: 2013-10-10

    上传用户:181992417

  • 基于CP2102的USB接口设计

    基于CP2102的USB接口设计,cp2102桥接芯片很不错

    标签: 2102 USB CP 接口设计

    上传时间: 2013-10-10

    上传用户:zhyiroy

  • USB接口类型大全及定义

    usb接口类型

    标签: USB 接口类型 定义

    上传时间: 2013-11-24

    上传用户:wxhwjf

  • USB接口资料

    USB接口设计

    标签: USB 接口

    上传时间: 2013-11-02

    上传用户:hehuaiyu

  • Mini-USB接口、标准USB接口定义

    这是一份比较全面的usb接口定义

    标签: Mini-USB USB 接口 标准

    上传时间: 2013-11-01

    上传用户:wayne595

  • ps2接口转usb接口

    ps2接口转usb接口

    标签: ps2 usb 接口

    上传时间: 2013-11-08

    上传用户:qilin

  • USB接口工业控制板

    400Ksps 光电隔离 12 位32 通道AD 16 通道高速同步数字输入 16 通道数字输出 2通道12位DA输出 5 通道脉冲输入 工业控制型USB接口板RBH8273使用说明书 这是一款适合于工业现场的USB采集控制板。 本的模拟量输入、模拟量输出、开关量输入、开关量输出、脉冲量输入全部采用光电隔离技术,全面保护系统的安全性与可靠性,为该板在工业现场应用提供了条件,解决了USB总线在工业控制现场中的抗干扰问题。

    标签: USB 接口 工业 控制板

    上传时间: 2013-12-15

    上传用户:gai928943

  • 温湿度传感器 sht11 仿真程序下载

    温湿度传感器 sht11 仿真程序 sbit out =P3^0; //加热口  //sbit input =P1^1;//检测口  //sbit speek =P2^0;//报警  sbit clo =P3^7;//时钟  sbit ST =P3^5;//开始  sbit EOC =P3^6;//成功信号  sbit gwei =P3^4;//个位  sbit swei =P3^3;//十位 sbit bwei =P3^2;//百位 sbit qwei =P3^1;//千位 sbit speak =P0^0;//报警音 sbit bjled =P0^1;//报警灯 sbit zcled =P0^2;//正常LED  int count;  uchar xianzhi;//取转换结果 uchar seth;//高时间 uchar setl;//低时间 uchar seth_mi;//高时间 uchar setl_mi;//低时间  bit  hlbz;//高低标志  bit  clbz;  bit  spbz;       ///定时中断程序/// void t0 (void) interrupt 1 using 0 {     TH0=(65536-200)/256;//5ms*200=1000ms=1s   TL0=(65536-200)%256;  clo=!clo;//产生时钟      if(count>5000)   {     if(hlbz)            {       if(seth_mi==0){seth_mi=seth;hlbz=0;out=0;}    else seth_mi--;       }     if(!hlbz)            {       if(setl_mi==0){setl_mi=setl;hlbz=1;out=1;}    else setl_mi--;       }   count=0;   }      else count++;         } ///////////// ///////延时/////// delay(int i) {    while(--i);          }     ///////显示处理/////// xianshi() {      int   abcd=0;     int i;     for (i=0;i<5;i++) {   abcd=xianzhi;  gwei=1;  swei=1;  bwei=1;  qwei=1;  P1=dispcode[abcd/1000];   qwei=0;  delay(70);   qwei=1;  abcd=abcd%1000;  P1=dispcode[abcd/100];  bwei=0;  delay(70);  bwei=1;   abcd=abcd%100;  P1=dispcode[abcd/10];  swei=0;  delay(70);  swei=1;  abcd=abcd%10;  P1=dispcode[abcd];  gwei=0;  delay(70);  gwei=1;  } }   doing()   {     if(xianzhi>100)     {bjled=0;speak=1;zcled=1;}  else {bjled=1;speak=0;zcled=0;}   }   void main(void)  {  seth=60;//h60秒  setl=90;//l90秒  seth_mi=60;//h60秒  setl_mi=90;//l90秒  TMOD=0X01;//定时0 16位工作模式   TH0=(65536-200)/256;   TL0=(65536-200)%256;    TR0=1; //开始计时  ET0=1;   //开定时0中断  EA=1;    //开全中断  while(1)  {      ST=0;    _nop_();     ST=1;    _nop_();     ST=0;  //   EOC=0;          xianshi();       while(!EOC)   {         xianshi();    }        xianzhi=P2;             xianshi();     doing();  }  }

    标签: sht 11 温湿度传感器 仿真程序

    上传时间: 2013-10-16

    上传用户:黄蛋的蛋黄

  • usb 接口设计

    usb 接口设计

    标签: usb 接口设计

    上传时间: 2015-01-08

    上传用户:ommshaggar