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

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

Wei

  • 本書曾被評為20世紀頂尖的30部計算機著作之一,作者Mark Allen Wei

    本書曾被評為20世紀頂尖的30部計算機著作之一,作者Mark Allen Wei

    標簽: Allen Mark Wei 計算機

    上傳時間: 2013-12-12

    上傳用戶:xhz1993

  • DS18B20 ying yong de wen jian ben wen Wei asm format please use keil to open it

    DS18B20 ying yong de wen jian ben wen Wei asm format please use keil to open it

    標簽: wen format please ying

    上傳時間: 2015-06-25

    上傳用戶:lps11188

  • AT91SAM7S64 SPI Slave mode with PDC sample code from Konrad.Wei

    AT91SAM7S64 SPI Slave mode with PDC sample code from Konrad.Wei

    標簽: Konrad sample Slave SAM7

    上傳時間: 2014-01-04

    上傳用戶:rocketrevenge

  • Author: Wei liu Summary: simulation of binary and non-binary bch decoder MATLAB Release: R1

    Author: Wei liu Summary: simulation of binary and non-binary bch decoder MATLAB Release: R14SP1 Required Products: Communications Toolbox Description: simulation of binary bch decoding algorithm for bch(n, k) with t bits error correction capability.

    標簽: simulation non-binary Summary Release

    上傳時間: 2014-01-10

    上傳用戶:frank1234

  • 數據結構和算法分析C語言版 E文原版by Mark Allen Wei

    數據結構和算法分析C語言版 E文原版by Mark Allen Wei

    標簽: Allen Mark Wei 數據結構

    上傳時間: 2016-01-31

    上傳用戶:s363994250

  • yong 1602 yejing xian shi db15b20 de wen du ,mcu Wei 89s52.

    yong 1602 yejing xian shi db15b20 de wen du ,mcu Wei 89s52.

    標簽: yejing yong 1602 xian

    上傳時間: 2017-06-12

    上傳用戶:gaome

  • Enhanced Audio Project by Dixie Xue & Wei Zhang

    Enhanced Audio Project by Dixie Xue & Wei Zhang

    標簽: Enhanced Project Audio Dixie

    上傳時間: 2013-12-24

    上傳用戶:fredguo

  • 開關電源EMI設計(英文版)

    Integrated EMI/Thermal Design forSwitching Power SuppliesWei ZhangThesis submitted to the Faculty of theVirginia Polytechnic Institute and State Universityin partial fulfillment of the requirements for the degree of Integrated EMI/Thermal Design forSwitching Power SuppliesWei Zhang(ABSTRACT)This work presents the modeling and analysis of EMI and thermal performancefor switch power supply by using the CAD tools. The methodology and design guidelinesare developed.By using a boost PFC circuit as an example, an equivalent circuit model is builtfor EMI noise prediction and analysis. The parasitic elements of circuit layout andcomponents are extracted analytically or by using CAD tools. Based on the model, circuitlayout and magnetic component design are modified to minimize circuit EMI. EMI filtercan be designed at an early stage without prototype implementation.In the second part, thermal analyses are conducted for the circuit by using thesoftware Flotherm, which includes the mechanism of conduction, convection andradiation. Thermal models are built for the components. Thermal performance of thecircuit and the temperature profile of components are predicted. Improved thermalmanagement and winding arrangement are investigated to reduce temperature.In the third part, several circuit layouts and inductor design examples are checkedfrom both the EMI and thermal point of view. Insightful information is obtained.

    標簽: EMI 開關電源 英文

    上傳時間: 2013-11-10

    上傳用戶:1595690

  • 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

  • CAN與RS232轉換節點的設計與實現

    CAN與RS232轉換節點的設計與實現 介紹將CAN總線接口與RS232總線接口相互轉換的設計方法和2種總線電平轉換關系,實現CAN總線與各模塊的接口設計,制定了相應的軟硬件設計方案,并給出軟件設計流程圖以及部分硬件設計原理圖。為CAN總線與RS232總線互聯提供了一種方法,對CAN總線與RS232總線接口設備的互聯和廣泛應用的實現具有重要意義。關鍵詞:CAN總線;RS-232總線;串行通信Design and Realization of CAN and RS232 Transformation NodeZHOU Wei, CHENG Xiao-hong(Information Institute, Wuhan University of Technology, Wuhan 430070)【Abstract】This paper introduces one design method of the CAN bus interface and the RS232 bus interface interconversion, emphasizes two kindof bus level transformation relations, realizes the CAN bus and various modules connection design, formulates the design proposal of correspondingsoftware and hardware, and gives the flow chart of software design as well as the partial schematic diagram of hardware design. It providesonemethod for the CAN bus and the RS232 bus interconnection, has the vital significance to widespread application realization of the CAN busand theRS232 bus interface equipment interconnection.【Key words】CAN bus; RS-232 bus; serial communication

    標簽: CAN 232 RS 轉換

    上傳時間: 2013-11-04

    上傳用戶:leesuper

主站蜘蛛池模板: 唐河县| 石嘴山市| 临潭县| 塘沽区| 金乡县| 望奎县| 芮城县| 重庆市| 辛集市| 于都县| 平湖市| 定边县| 肇庆市| 呼伦贝尔市| 惠安县| 台安县| 深州市| 台北县| 济源市| 札达县| 怀远县| 横峰县| 济南市| 景德镇市| 新乡市| 乐业县| 左云县| 乌审旗| 隆回县| 登封市| 宜丰县| 封丘县| 渝中区| 临湘市| 陆河县| 肥城市| 介休市| 毕节市| 平度市| 安多县| 高青县|