Delphi, typed list generator code snippled, wonderfull delphi sample code
標簽: code wonderfull generator snippled
上傳時間: 2013-12-31
上傳用戶:zhenyushaw
The PSpice Library List
上傳時間: 2014-05-23
上傳用戶:trepb001
linked list construct to support any number of Flash banks.
標簽: construct support linked number
上傳時間: 2017-09-24
上傳用戶:a3318966
表述了在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
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 check list . 步驟非常之詳細,按著步驟一步一步的檢查就可以達到標準的。
上傳時間: 2013-11-20
上傳用戶:my_cc
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
針對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.
上傳時間: 2013-11-21
上傳用戶:gyq
//芯片資料請到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;}
上傳時間: 2013-11-03
上傳用戶:hongmo