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

skip-list

  • Delphi, typed list generator code snippled, wonderfull delphi sample code

    Delphi, typed list generator code snippled, wonderfull delphi sample code

    标签: code wonderfull generator snippled

    上传时间: 2013-12-31

    上传用户:zhenyushaw

  • The PSpice Library List

    The PSpice Library List

    标签: Library PSpice List The

    上传时间: 2014-05-23

    上传用户:trepb001

  • linked list construct to support any number of Flash banks.

    linked list construct to support any number of Flash banks.

    标签: construct support linked number

    上传时间: 2017-09-24

    上传用户:a3318966

  • List表格求和代码

    表述了在List表格中如何求和的计算方法和源代码

    标签: Lisit

    上传时间: 2015-04-26

    上传用户:aaass22

  • 凌力尔特芯片电路总汇

    Over the past several years Linear Technology, the magazine, has come of age. From nothing, the publication has come into its own, as has its subscriber list. Many innovative circuits have seen the light of day in the pages of our now hallowed publication.

    标签: 凌力尔特 芯片电路

    上传时间: 2014-12-23

    上传用户:crazyer

  • PCIe Trusted Configuration Spa

    TCS ECN Background & Key TermsTrust Issues with PCIe PlatformsTCS ECN DetailsTrusted Config Space and TCS TransactionsTrusted Config Access Mech (TCAM)Standard vs Trusted Config AccessNew Capability StructuresTCS Support in Root Ports, Switches, & BridgesTCS “Does not…” ListExample Trusted Computing PlatformRevisiting the Trust IssuesKey Takeaways/Call to ActionQuestions

    标签: Configuration Trusted PCIe Spa

    上传时间: 2013-11-21

    上传用户:hsfei8

  • pcb检查标准

    pcb检查标准,即 pcb check list . 步骤非常之详细,按着步骤一步一步的检查就可以达到标准的。

    标签: pcb 检查标准

    上传时间: 2013-11-20

    上传用户:my_cc

  • Power Quality and Energy Manag

    International reference list 02/2004International referenceJ.JaatinenCompany CountryBerlin GermanyDeutsche Flugsicherung GermanyFrankfurt GermanyGuangzhou ChinaHamburg GermanyHelsinki-Vantaa FinlandKuala Lumpur - Sepang MalaysiaZürich Switzerland

    标签: Quality Energy Power Manag

    上传时间: 2013-10-30

    上传用户:1184599859

  • ADS1110与AT89C51单片机系统的接口电路设计

    针对51单片机系统中常用的A/D转换器价格高、精度低的缺点,介绍TI公司的16 位的带有I2C串行接口的A/D转换器ADS1110的工作原理,给出ADS1110与AT89C51单片机系统的接口电路和软件设计。实践证明,ADS1110具有高性价比和实用性。 Abstract:  According to the disadvantages of high expense and low accuracy of the general A/D converter used in MCS51 microchip system,the principle and working process of a high accuracy 16-bit A/D conversion ADS1110 which has I2C bus and belongs to TI Company are proposed here as well as the interface of ADS1110 to AT89C51 and software list.It is proved to be high performance index and practicability.

    标签: 1110 ADS 89C C51

    上传时间: 2013-11-21

    上传用户:gyq

  • DS1820 C51 子程序 (一线数据传输)

    //芯片资料请到www.elecfans.com查找 //DS1820 C51 子程序//这里以11.0592M晶体为例,不同的晶体速度可能需要调整延时的时间//sbit DQ =P2^1;//根据实际情况定义端口 typedef unsigned char byte;typedef unsigned int  word; //延时void delay(word useconds){  for(;useconds>0;useconds--);} //复位byte ow_reset(void){  byte presence;  DQ = 0; //pull DQ line low  delay(29); // leave it low for 480us  DQ = 1; // allow line to return high  delay(3); // wait for presence  presence = DQ; // get presence signal  delay(25); // wait for end of timeslot  return(presence); // presence signal returned}     // 0=presence, 1 = no part //从 1-wire 总线上读取一个字节byte read_byte(void){  byte i;  byte value = 0;  for (i=8;i>0;i--)  {    value>>=1;    DQ = 0; // pull DQ low to start timeslot    DQ = 1; // then return high    delay(1);  //for (i=0; i<3; i++);     if(DQ)value|=0x80;    delay(6); // wait for rest of timeslot  }  return(value);} //向 1-WIRE 总线上写一个字节void write_byte(char val){  byte i;  for (i=8; i>0; i--) // writes byte, one bit at a time  {    DQ = 0; // pull DQ low to start timeslot    DQ = val&0x01;    delay(5); // hold value for remainder of timeslot    DQ = 1;    val=val/2;  }  delay(5);} //读取温度char Read_Temperature(void){  union{    byte c[2];    int x;  }temp;   ow_reset();  write_byte(0xCC); // Skip ROM  write_byte(0xBE); // Read Scratch Pad  temp.c[1]=read_byte();  temp.c[0]=read_byte();  ow_reset();  write_byte(0xCC); //Skip ROM  write_byte(0x44); // Start Conversion  return temp.x/2;}

    标签: 1820 C51 DS 程序

    上传时间: 2013-11-03

    上传用户:hongmo