亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

System-on-a-<b>CHip</b>

  • LTC1099基于PC的數據采集板實現

    A complete design for a data acquisition card for the IBM PC is detailed in this application note. Additionally, C language code is provided to allow sampling of data at speed of more than 20kHz. The speed limitation is strictly based on the execution speed of the "C" data acquisition loop. A "Turbo" XT can acquire data at speeds greater than 20kHz. Machines with 80286 and 80386 processors can go faster than 20kHz. The computer that was used as a test bed in this application was an XT running at 4.77MHz and therefore all system timing and acquisition time measurements are based on a 4.77MHz clock speed.

    標簽: 1099 LTC 數據 采集板

    上傳時間: 2013-10-29

    上傳用戶:BOBOniu

  • 高速數字系統設計下載pdf

    高速數字系統設計下載pdf:High-Speed Digital SystemDesign—A Handbook ofInterconnect Theory and DesignPracticesStephen H. HallGarrett W. HallJames A. McCallA Wiley-Interscience Publication JOHN WILEY & SONS, INC.New York • Chichester • Weinheim • Brisbane • Singapore • TorontoCopyright © 2000 by John Wiley & Sons, Inc.speeddigital systems at the platform level. The book walks the reader through everyrequired concept, from basic transmission line theory to digital timing analysis, high-speedmeasurement techniques, as well as many other topics. In doing so, a unique balancebetween theory and practical applications is achieved that will allow the reader not only tounderstand the nature of the problem, but also provide practical guidance to the solution.The level of theoretical understanding is such that the reader will be equipped to see beyondthe immediate practical application and solve problems not contained within these pages.Much of the information in this book has not been needed in past digital designs but isabsolutely necessary today. Most of the information covered here is not covered in standardcollege curricula, at least not in its focus on digital design, which is arguably one of the mostsignificant industries in electrical engineering.The focus of this book is on the design of robust high-volume, high-speed digital productssuch as computer systems, with particular attention paid to computer busses. However, thetheory presented is applicable to any high-speed digital system. All of the techniquescovered in this book have been applied in industry to actual digital products that have beensuccessfully produced and sold in high volume.Practicing engineers and graduate and undergraduate students who have completed basicelectromagnetic or microwave design classes are equipped to fully comprehend the theorypresented in this book. At a practical level, however, basic circuit theory is all thebackground required to apply the formulas in this book.

    標簽: 高速數字 系統設計

    上傳時間: 2013-10-26

    上傳用戶:縹緲

  • 微電腦型數學演算式雙輸出隔離傳送器

    特點(FEATURES) 精確度0.1%滿刻度 (Accuracy 0.1%F.S.) 可作各式數學演算式功能如:A+B/A-B/AxB/A/B/A&B(Hi or Lo)/|A| (Math functioA+B/A-B/AxB/A/B/A&B(Hi&Lo)/|A|/etc.....) 16 BIT 類比輸出功能(16 bit DAC isolating analog output function) 輸入/輸出1/輸出2絕緣耐壓2仟伏特/1分鐘(Dielectric strength 2KVac/1min. (input/output1/output2/power)) 寬范圍交直流兩用電源設計(Wide input range for auxiliary power) 尺寸小,穩定性高(Dimension small and High stability)

    標簽: 微電腦 數學演算 輸出 隔離傳送器

    上傳時間: 2013-11-24

    上傳用戶:541657925

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 TLC2543的引腳排列及說明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double  sum_final1; double  sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe};  void delay(unsigned char b)   //50us {           unsigned char a;           for(;b>0;b--)                     for(a=22;a>0;a--); }  void display(uchar a,uchar b,uchar c,uchar d) {    P0=duan[a]|0x80;    P2=wei[0];    delay(5);    P2=0xff;    P0=duan[b];    P2=wei[1];    delay(5);   P2=0xff;   P0=duan[c];   P2=wei[2];   delay(5);   P2=0xff;   P0=duan[d];   P2=wei[3];   delay(5);   P2=0xff;   } uint read(uchar port) {   uchar  i,al=0,ah=0;   unsigned long ad;   clock=0;   _cs=0;   port<<=4;   for(i=0;i<4;i++)  {    d_in=port&0x80;    clock=1;    clock=0;    port<<=1;  }   d_in=0;   for(i=0;i<8;i++)  {    clock=1;    clock=0;  }   _cs=1;   delay(5);   _cs=0;   for(i=0;i<4;i++)  {    clock=1;    ah<<=1;    if(d_out)ah|=0x01;    clock=0; }   for(i=0;i<8;i++)  {    clock=1;    al<<=1;    if(d_out) al|=0x01;    clock=0;  }   _cs=1;   ad=(uint)ah;   ad<<=8;   ad|=al;   return(ad); }  void main()  {   uchar j;   sum=0;sum1=0;   sum_final=0;   sum_final1=0;    while(1)  {              for(j=0;j<128;j++)          {             sum1+=read(1);             display(a1,b1,c1,d1);           }            sum=sum1/128;            sum1=0;            sum_final1=(sum/4095)*5;            sum_final=sum_final1*1000;            a1=(int)sum_final/1000;            b1=(int)sum_final%1000/100;            c1=(int)sum_final%1000%100/10;            d1=(int)sum_final%10;            display(a1,b1,c1,d1);           }         } 

    標簽: 2543 TLC

    上傳時間: 2013-11-19

    上傳用戶:shen1230

  • AVR單片機數碼管秒表顯示

    #include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,

    標簽: AVR 單片機 數碼管

    上傳時間: 2013-10-21

    上傳用戶:13788529953

  • 基于8098單片機的SPWM變頻調速系統

      數字控制的交流調速系統所選用的微處理器、功率器件及產生PWM波的方法是影響交流調速系統性能好壞的直接因素。在介紹了正弦脈寬調制(SPWM)技術的基礎上,設計了一種以8098單片機作為控制器,以智能功率模塊IPM為開關器件的變頻調速系統。通過軟件編程,產生正弦脈沖寬度調制波形來控制絕緣柵雙極晶體管的導通和關斷,從而達到控制異步電動機轉速的目的。實驗結果表明,該系統可調頻率調電壓,穩定度高,調速范圍寬,具有較強的實用價值   Abstract:   AC variable speed with digital control systems used microprocessors, power devices and generate PWM wave is the direct factors of affecting the performance AC speed regulation system. On the basis of introducing the sinusoidal pulse width modulation (SPWM) technology,this paper designed variable speed system which used 8098 as a controller, intelligent power module IPM as switching device. Through software programming, resulting in sinusoidal pulse width modulation waveform to control the insulated gate bipolar transistor turn on and off, so as to achieve the purpose of speed control of induction motors. Experimental results show that the system can adjust frequency modulation voltage, high stability, wide speed range, has a strong practical value.  

    標簽: 8098 SPWM 單片機 變頻調速系統

    上傳時間: 2013-11-14

    上傳用戶:ynwbosss

  • 基于C8051F340的數據采集器設計

    針對眾多低成本數據采集需求,采用帶有片上USB控制器和D/A轉換器的混合信號微處理器C8051F340,設計了一款可通過USB接口和LabVIEW圖形用戶界面實現與PC機聯機的數據采集器,同時借助系統的SD卡存儲獨立實現現場長時間采集數據。該數據采集器成本低,結構簡單,體積小,已成功用于工業現場。 Abstract:  Aiming at the need of low cost data acquisition, a data acquisition device is designed based on C8051F340 which is a mixed-signal microcontroller and integrates USB controller and A/D controller on a chip.The data acquisition device which can combine with PC by USB interface and LabVIEW graphical user interface,can realize data acquisition. At the same time,it can be solely run a long time in virtue of SD card in field.The date aequisition device features low cost,simple structure and little sharp, and it has been used in industry field.

    標簽: C8051F340 數據 集器設計

    上傳時間: 2014-05-31

    上傳用戶:1109003457

  • 基于C8051F005單片機的參數測試儀的設計

    介紹了基于單片機航空交流電參數測試儀的系統設計。以Silicon Labs公司的C8051F005單片機為核心設計出數據采集板,通過RS-232串口與上位機通訊。運用Lab Windows/CVI編寫的上位機軟件實現信號的檢測以及波形和數據的顯示,給出了測試儀硬件電路的組成和軟件流程圖。本系統具有硬件結構簡單、容易實現和成本低等特點,在實際應用中其穩定性、精確性均能滿足客戶要求。 Abstract:  The design of aeronautics AC parameters tester based on the single-chip is introduced.The core component of data acquisition board is C8051F005 single chip of Silicon Labs Company,and communication with PC through RS-232. The signal processing software programmed with LabWindows/CVI can be used successfully to fulfill inspection of signal and display of the waveform and data. The hardware and software configuration of test instrument are provided.The hardware of the system is simple, and can be easily realized.The stability and precision of the measurement instrument are enough to meet the requirements.

    標簽: C8051F005 單片機 儀的設計 參數測試

    上傳時間: 2013-11-18

    上傳用戶:wang5829

  • MSP430在頻率測量系統中的應用

       介紹一種以MSP430單片機為基礎的智能頻率測量系統,采用硬件邏輯與軟件指令相結合的方式控制閘門,實現0 MHz~10 MHz范圍內無檔切換的等精度測量。 Abstract:  An intelligent frequency measurement system based on MSP430 singlechip is introduced. The system uses a way that can combine hardware logic and software instructions to contronl the strobe ,and completes the functions of equal precision in the range of 0MHz~10MHz without shifting

    標簽: MSP 430 頻率測量

    上傳時間: 2013-10-28

    上傳用戶:dbs012280

  • 基于ADuC841的膜片鉗放大器系統設計

    為降低成本和解決現有膜片鉗放大器系統中PC機的干擾問題,研究了一種基于單片機的膜片鉗放大器小系統。該系統采用ADI公司生產的ADuC841作為控制核心,并且配置相應的液晶顯示模塊LCM3202401。模擬電路部分采用高輸入阻抗的AD8627實現微電流信號的采集,并由后級電路進行信號的放大和電阻電容的補償。它具有硬件電路簡單、體積小、使用方便的特點。既可以單獨作為小系統實現采集和顯示,也可以通過紅外方式和PC機進行通訊,在PC機上進行信號的處理。 Abstract:  In order to reduce cost and resolve the interferential problem with PC in existing patch clamp amplifiers, a small patch clamp amplifier system design based on microcontroller is studied. It adopts a new high performance microconverter ADuC841 by the ADI as the control core in the system, configuring a liquid crystal module LCM3202401. In the analog circuit, AD8627 with high input impedance is used to detect the low current,signal magnification, as well as resistance and capacitance compensation are accomplished by subsequent circuits. It has the advantage of simple hardware circuit design, small volume and convenient operation. It can either be used as an independent system to measure and show signal detected or transmit to PC by infrared ray.

    標簽: ADuC 841 膜片鉗 放大器

    上傳時間: 2013-11-06

    上傳用戶:yy_cn

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久91| av成人激情| 蜜桃av一区二区三区| 另类亚洲自拍| 欧美日韩国产高清| 欧美一区二区三区视频免费| 快播亚洲色图| 欧美精品福利| 伊人天天综合| 男男成人高潮片免费网站| 亚洲综合色在线| 欧美国产一区二区在线观看| 黄色av一区| 久久精品国产2020观看福利| 欧美精品在线一区| 国内不卡一区二区三区| 亚洲福利在线看| 亚洲欧美日韩综合| 国产精品家教| 狼狼综合久久久久综合网 | 欧美精品在线一区二区| 亚洲性视频网址| 国产精品jizz在线观看美国 | 久久久久久久波多野高潮日日| 欧美中文在线免费| 亚洲国产成人av好男人在线观看| 欧美精品在线免费播放| 久久精品成人一区二区三区蜜臀 | 在线成人激情黄色| 国产精品乱码一区二区三区| 久久久亚洲国产天美传媒修理工| 亚洲视频999| 亚洲人成小说网站色在线| 国产视频在线观看一区二区三区| 香蕉成人伊视频在线观看| 亚洲日本成人网| 亚洲人成网站在线播| 在线观看日韩www视频免费| 国产一区91| 国产一区二区三区在线观看视频 | 亚洲欧美欧美一区二区三区| 亚洲精品视频中文字幕| 亚洲国产综合视频在线观看| 黄色成人在线免费| 欧美日韩一区二区三区| 欧美日韩中文| 国产欧美在线视频| 国产一区香蕉久久| 伊人成人在线| 日韩午夜在线电影| 欧美.www| 欧美风情在线观看| 欧美激情按摩在线| 国产精品色婷婷久久58| 国内精品国语自产拍在线观看| 雨宫琴音一区二区在线| 亚洲激情电影中文字幕| 亚洲视频在线一区观看| 亚洲欧美偷拍卡通变态| 久久久久久久综合狠狠综合| 美女网站在线免费欧美精品| 欧美精品久久久久久久久老牛影院| 欧美日本韩国一区二区三区| 国产精品资源在线观看| 亚洲国产婷婷| 久久国产精品久久久| 一区二区三区日韩在线观看| 欧美色综合天天久久综合精品| 欧美午夜www高清视频| 黄色av日韩| 亚洲一区二区在| 欧美国产日本| 亚洲第一精品久久忘忧草社区| 中文亚洲欧美| 免费亚洲视频| 精品av久久707| 久久国产精品亚洲77777| 国产精品a久久久久| 999亚洲国产精| 欧美精品激情在线| 亚洲激情另类| 欧美激情在线免费观看| 亚洲人成网站999久久久综合| 久久全球大尺度高清视频| 国外精品视频| 麻豆精品国产91久久久久久| 国产欧美日韩免费| 亚洲欧美影音先锋| 国产欧美一区二区在线观看| 久久久国产精品一区二区三区| 国产精品亚洲网站| 午夜日韩av| 好看的亚洲午夜视频在线| 久久国产精品一区二区三区| 国外成人性视频| 欧美a级片网站| 亚洲经典自拍| 欧美人成在线视频| 亚洲视频网站在线观看| 欧美激情视频给我| 亚洲欧美日韩国产一区| 国产精品美女| 久久综合网hezyo| 最新亚洲电影| 国产日韩欧美夫妻视频在线观看| 久久爱91午夜羞羞| 亚洲精选国产| 狠狠色丁香婷婷综合影院| 欧美国产亚洲另类动漫| 亚洲欧美日本伦理| 亚洲高清色综合| 欧美性猛交99久久久久99按摩| 欧美一级淫片aaaaaaa视频| 亚洲福利一区| 国产亚洲精品激情久久| 欧美三级不卡| 欧美成人免费播放| 欧美一级片久久久久久久| 在线观看欧美日韩| 一区二区三区国产在线| 日韩视频一区二区在线观看 | 一本大道久久精品懂色aⅴ| 欧美猛交免费看| 久久精品国产成人| 一个人看的www久久| 亚洲二区在线| 国产精品区免费视频| 免费久久精品视频| 欧美一区二区三区在线观看| 在线日韩av片| 国产欧美精品| 国产精品久久久久一区二区三区共 | 日韩写真在线| 国产日产欧美精品| 欧美激情网站在线观看| 亚洲永久免费| 亚洲国产精品久久久久秋霞影院| 国产精品黄页免费高清在线观看| 欧美xxxx在线观看| 久久综合狠狠综合久久激情| 亚洲字幕一区二区| 在线成人av.com| 影音先锋另类| 国产午夜亚洲精品羞羞网站 | 六月婷婷一区| 久久综合久色欧美综合狠狠| 亚洲视频在线观看一区| 海角社区69精品视频| 国产一区二区三区免费不卡 | 夜夜爽夜夜爽精品视频| 国产亚洲va综合人人澡精品| 国产精品一级| 黄色亚洲在线| 91久久国产综合久久91精品网站| 极品少妇一区二区三区| 伊人成年综合电影网| 在线观看日韩专区| 夜夜嗨网站十八久久| 亚洲女人小视频在线观看| 欧美一区二区三区视频免费| 久久性天堂网| 亚洲卡通欧美制服中文| 在线精品福利| 亚洲永久网站| 国产精品一区视频网站| 欧美精品黄色| 老色批av在线精品| 国产精品福利久久久| 久久久久久网| 国产精品高潮粉嫩av| 在线观看视频免费一区二区三区| 亚洲国产经典视频| 午夜精品一区二区三区四区| 免费成人在线视频网站| 欧美日韩国产小视频在线观看| 国产日韩精品视频一区| 最新国产精品拍自在线播放| 午夜国产欧美理论在线播放| 久久九九久精品国产免费直播| 欧美激情亚洲激情| 黄色免费成人| 久久精品夜色噜噜亚洲aⅴ| 欧美日韩亚洲不卡| 好吊色欧美一区二区三区四区 | 免费精品99久久国产综合精品| 国产精品日本精品| 99国产精品视频免费观看| 麻豆亚洲精品| 国产精品一区二区在线| 亚洲免费av网站| 欧美另类久久久品| 韩国自拍一区| 麻豆成人在线| 亚洲免费av网站| 欧美视频在线一区二区三区| 亚洲第一精品夜夜躁人人爽 | 亚洲国产影院| 久久综合伊人77777麻豆| 国产一区999| 欧美一区二区视频在线|