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

rest

  • Punjab is a jabber XMLRPC/SOAP/rest client. It is a xmlrpc, soap, or rest server that allows for p

    Punjab is a jabber XMLRPC/SOAP/rest client. It is a xmlrpc, soap, or rest server that allows for persistent client connections to a jabber server.

    标签: rest Punjab XMLRPC client

    上传时间: 2015-05-08

    上传用户:fanboynet

  • AES decoder aes_dec.vhdl AES encoder aes_enc.vhdl Package used by rest of design aes_pkg.vhdl

    AES decoder aes_dec.vhdl AES encoder aes_enc.vhdl Package used by rest of design aes_pkg.vhdl Key Expansion component for AES encoder and decoder key_expansion.vhdl

    标签: vhdl AES decoder aes_dec

    上传时间: 2015-09-07

    上传用户:许小华

  • Note that only the PORT is provided and it is assumed that you have the rest of the source for &micr

    Note that only the PORT is provided and it is assumed that you have the rest of the source for µ C/OS-II from the book or the upgrade.

    标签: the that provided assumed

    上传时间: 2013-11-25

    上传用户:er1219

  • 编写rest实例 rest分布式框架在app中的应用

    编写rest实例 rest分布式框架在app中的应用

    标签: rest app 编写 分布式

    上传时间: 2014-01-17

    上传用户:shinesyh

  • delphi sql2000 back/rest

    delphi sql2000 back/rest

    标签: delphi 2000 back rest

    上传时间: 2016-09-27

    上传用户:小鹏

  • good document about secure rest

    good document about secure rest

    标签: document secure about good

    上传时间: 2017-07-01

    上传用户:ZJX5201314

  • This is a special code for rest with java language. For your reference, enjoy it.

    This is a special code for rest with java language. For your reference, enjoy it.

    标签: reference language special enjoy

    上传时间: 2013-12-25

    上传用户:nanshan

  • 射频集成电路设计John Rogers(Radio Freq

    Radio Frequency Integrated Circuit Design I enjoyed reading this book for a number of reasons. One reason is that itaddresses high-speed analog design in the context of microwave issues. This isan advanced-level book, which should follow courses in basic circuits andtransmission lines. Most analog integrated circuit designers in the past workedon applications at low enough frequency that microwave issues did not arise.As a consequence, they were adept at lumped parameter circuits and often notcomfortable with circuits where waves travel in space. However, in order todesign radio frequency (RF) communications integrated circuits (IC) in thegigahertz range, one must deal with transmission lines at chip interfaces andwhere interconnections on chip are far apart. Also, impedance matching isaddressed, which is a topic that arises most often in microwave circuits. In mycareer, there has been a gap in comprehension between analog low-frequencydesigners and microwave designers. Often, similar issues were dealt with in twodifferent languages. Although this book is more firmly based in lumped-elementanalog circuit design, it is nice to see that microwave knowledge is brought inwhere necessary.Too many analog circuit books in the past have concentrated first on thecircuit side rather than on basic theory behind their application in communications.The circuits usually used have evolved through experience, without asatisfying intellectual theme in describing them. Why a given circuit works bestcan be subtle, and often these circuits are chosen only through experience. Forthis reason, I am happy that the book begins first with topics that require anintellectual approach—noise, linearity and filtering, and technology issues. Iam particularly happy with how linearity is introduced (power series). In therest of the book it is then shown, with specific circuits and numerical examples,how linearity and noise issues arise.

    标签: Rogers Radio John Freq

    上传时间: 2014-12-23

    上传用户:han_zh

  • 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

  • In most software-development organizations, the testing program functions as the final "quality gat

    In most software-development organizations, the testing program functions as the final "quality gate" for an application, allowing or preventing the move from the comfort of the software-engineering environment into the real world. With this role comes a large responsibility: The success of an application, and possibly of theorganization, can rest on the quality of the software product.

    标签: software-development organizations functions the

    上传时间: 2015-05-03

    上传用户:s363994250