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

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

A率

  • 多路輸出開關電源交叉調整率

    多路輸出開關電源交叉調整率

    標簽: 多路輸出 交叉調整率 開關電源

    上傳時間: 2013-10-31

    上傳用戶:15070202241

  • 2012TI杯陜西賽題-A微弱信號檢測裝置

    2012TI杯陜西賽題H題,2012TI杯陜西賽題-A微弱信號檢測裝置.

    標簽: 2012 TI 微弱信號 檢測裝置

    上傳時間: 2013-12-17

    上傳用戶:362279997

  • 2011全國大賽A題開關電源模塊并聯供電系統

    2011全國大賽A題開關電源模塊并聯供電系統

    標簽: 2011 大賽 開關電源模塊 并聯供電系統

    上傳時間: 2013-11-10

    上傳用戶:冇尾飛鉈

  • 安富利:基于MSP430FE427(A) 模塊的電度表解決方案(英文版)

      Avnet Design Service電源實驗室開發出基于MSP430FE427(A) 模塊的電度表解決方案:   (1)電壓 (90Vac~264Vac) 與電流 (10Arms) 測量范圍寬   (2)電度表是一種測量用電量的設備   (3)LCD顯示電量 (kWh)、功率 (W)、電壓 (V)、電流 (A)、功率因數(PF) 與溫度 (oC) 測量值   (4)264Vac/63Hz與140mW @90Vac/47Hz條件下,無負載功耗低于300mW   (5)測量精度高達2%

    標簽: MSP 430 427 FE

    上傳時間: 2013-10-13

    上傳用戶:cjf0304

  • 小型直流電源PMC-A/PMC系列

    PMC和PMC-A系列是小型,高性能,恒定電壓,恒定電流的串聯調節器方式的DC電源。采用串聯調節器方式的設計,可以在低噪聲輸出等級的情況下實現了高穩定的輸出。LED數字儀表在朦朧的環境中也能清晰易讀,電子開關排除了繼電器的顫動,也是這一系列的特征。此外,一部分的PMC-A系列裝備了各種遠程控制功能,通過GPIB,可連接電源控制器。

    標簽: PMC-A PMC 直流電源

    上傳時間: 2013-10-23

    上傳用戶:GHF

  • 用MSP430實現斜率 A/D轉換的溫度控制系統

    用 MSP430實現斜率 A/D轉換的溫度控制系統

    標簽: MSP 430 D轉換 斜率

    上傳時間: 2013-12-21

    上傳用戶:athjac

  • A-C8V4開發板-使用說明書

    A-C8V4開發板-使用說明指南

    標簽: A-C 開發板 使用說明書

    上傳時間: 2013-11-04

    上傳用戶:王小奇

  • 電子設計大賽點陣電子顯示屏(A題)

    電子設計大賽點陣電子顯示屏(A題)

    標簽: 電子設計大賽 點陣 電子顯示屏

    上傳時間: 2013-10-11

    上傳用戶:569342831

  • 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

  • 基于單片機系統的(24,16)循環碼編碼、譯碼方案

      在理論分析循環碼編碼和譯碼基本原理的基礎上,提出了基于單片機系統的(24,16)循環碼軟件實現編碼、譯碼的方案。仿真結果表明(24,16)循環碼能有效地克服來自通訊信道的干擾,保證數據通信的可靠及系統的穩定,使誤碼率大幅度降低。本論文對(24,16)循環碼的研究結果表明,可以有效地降低錯誤概率和提高系統的吞吐量,實現糾錯僅需要在接收端增加有限的存儲空間和計算復雜度,具有一定的實用價值。   Abstract:   Based on analyzing the theory of encoding and decoding of cyclic code, this paper showed the schemes of encoding and decoding of(24,16)cyclic code by the software and based on microcontroller. Simulation results show that using (24,16) cyclic codes can effectively overcome the interference from communication channel, ensure the reliability and stability of data communication systems, and reduce the bit error rate greatly. The results of this paper show that by using the (24,16) cyclic code, the error rate can be reduced and the system throughput can be improved. Meanwhile, the system only needs to enlarge limited storage space and computation the complexity at the receiving end to realize error correction. Thus the (24,16) cyclic code has a practical value.  

    標簽: 24 16 單片機系統 循環碼

    上傳時間: 2013-11-09

    上傳用戶:gaoliangncepu

主站蜘蛛池模板: 永川市| 雅安市| 江津市| 吉安县| 牟定县| 长垣县| 南城县| 新丰县| 新龙县| 望城县| 丰城市| 安平县| 永仁县| 宜都市| 海口市| 老河口市| 岚皋县| 丰都县| 石嘴山市| 郓城县| 吉林市| 应城市| 沁源县| 阿拉善左旗| 天峻县| 会泽县| 临江市| 双鸭山市| 社旗县| 拜城县| 沐川县| 兴城市| 文成县| 汤阴县| 临邑县| 汝南县| 景泰县| 江油市| 余江县| 凤翔县| 汶川县|