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

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

DOUBLE

  • 雙音多頻的DTMF信號編碼程序(產生DTMF信號進行編碼)

    ·詳細說明:雙音多頻的DTMF信號編碼程序,產生DTMF信號進行編碼。- The DOUBLE sound multi- frequencies DTMF signal coded program, produces the DTMF signal to carry on the code.

    標簽: DTMF 雙音多頻 信號編碼 信號

    上傳時間: 2013-04-24

    上傳用戶:yangzhiwei

  • DRAM內存模塊的設計技術

    第二部分:DRAM 內存模塊的設計技術..............................................................143第一章 SDR 和DDR 內存的比較..........................................................................143第二章 內存模塊的疊層設計.............................................................................145第三章 內存模塊的時序要求.............................................................................1493.1 無緩沖(Unbuffered)內存模塊的時序分析.......................................1493.2 帶寄存器(Registered)的內存模塊時序分析...................................154第四章 內存模塊信號設計.................................................................................1594.1 時鐘信號的設計.......................................................................................1594.2 CS 及CKE 信號的設計..............................................................................1624.3 地址和控制線的設計...............................................................................1634.4 數據信號線的設計...................................................................................1664.5 電源,參考電壓Vref 及去耦電容.........................................................169第五章 內存模塊的功耗計算.............................................................................172第六章 實際設計案例分析.................................................................................178 目前比較流行的內存模塊主要是這三種:SDR,DDR,RAMBUS。其中,RAMBUS內存采用阻抗受控制的串行連接技術,在這里我們將不做進一步探討,本文所總結的內存設計技術就是針對SDRAM 而言(包括SDR 和DDR)。現在我們來簡單地比較一下SDR 和DDR,它們都被稱為同步動態內存,其核心技術是一樣的。只是DDR 在某些功能上進行了改進,所以DDR 有時也被稱為SDRAM II。DDR 的全稱是DOUBLE Data Rate,也就是雙倍的數據傳輸率,但是其時鐘頻率沒有增加,只是在時鐘的上升和下降沿都可以用來進行數據的讀寫操作。對于SDR 來說,市面上常見的模塊主要有PC100/PC133/PC166,而相應的DDR內存則為DDR200(PC1600)/DDR266(PC2100)/DDR333(PC2700)。

    標簽: DRAM 內存模塊 設計技術

    上傳時間: 2014-01-13

    上傳用戶:euroford

  • 使用新電源模塊改進表面貼裝可制造性

    The latest generation of Texas Instruments (TI) boardmountedpower modules utilizes a pin interconnect technologythat improves surface-mount manufacturability.These modules are produced as a DOUBLE-sided surfacemount(DSSMT) subassembly, yielding a case-less constructionwith subcomponents located on both sides of theprinted circuit board (PCB). Products produced in theDSSMT outline use the latest high-efficiency topologiesand magnetic-component packaging. This providescustomers with a high-efficiency, ready-to-use switchingpower module in a compact, space-saving package. Bothnonisolated point-of-load (POL) switching regulators andthe isolated dc/dc converter modules are being producedin the DSSMT outline.TI’s plug-in power product line offers power modules inboth through-hole and surface-mount packages. The surfacemountmodules produced in the DSSMT outline use asolid copper interconnect with an integral solder ball fortheir

    標簽: 電源模塊 可制造性 表面貼裝

    上傳時間: 2013-10-10

    上傳用戶:1184599859

  • 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

  • C51中的關鍵字及用途說明

    C51 中的關鍵字關鍵字 用途 說明auto 存儲種類說明 用以說明局部變量,缺省值為此break 程序語句 退出最內層循環case 程序語句 Switch 語句中的選擇項char 數據類型說明 單字節整型數或字符型數據const 存儲類型說明 在程序執行過程中不可更改的常量值continue 程序語句 轉向下一次循環default 程序語句 Switch 語句中的失敗選擇項do 程序語句 構成do..while 循環結構DOUBLE 數據類型說明 雙精度浮點數else 程序語句 構成if..else 選擇結構enum 數據類型說明 枚舉extern 存儲種類說明 在其他程序模塊中說明了的全局變量flost 數據類型說明 單精度浮點數for 程序語句 構成for 循環結構goto 程序語句 構成goto 轉移結構if 程序語句 構成if..else 選擇結構int 數據類型說明 基本整型數long 數據類型說明 長整型數register 存儲種類說明 使用CPU 內部寄存的變量return 程序語句 函數返回short 數據類型說明 短整型數signed 數據類型說明 有符號數,二進制數據的最高位為符號位sizeof 運算符 計算表達式或數據類型的字節數static 存儲種類說明 靜態變量struct 數據類型說明 結構類型數據swicth 程序語句 構成switch 選擇結構typedef 數據類型說明 重新進行數據類型定義union 數據類型說明 聯合類型數據unsigned 數據類型說明 無符號數數據void 數據類型說明 無類型數據volatile 數據類型說明 該變量在程序執行中可被隱含地改變while 程序語句 構成while 和do..while 循環結構ANSIC 標準關鍵字關鍵字 用途 說明bit 位標量聲明 聲明一個位標量或位類型的函數sbit 位標量聲明 聲明一個可位尋址變量

    標簽: C51

    上傳時間: 2013-10-08

    上傳用戶:waves_0801

  • keil使用筆記

    keil 使用筆記:在Memory窗口上輸入address_type:address才能看到正確地址的變量debug~perfermance analyzer加入要察看的模塊名稱,然后view~perfermance analyzer window 可以察看各個模塊運行時間①Display address_type:address B:Bit address C:Code Memory Bx:Code Bank D D:80H 命令可以查看特殊寄存器 data D I:0 命令可以查看內部RAM數據iData; D X:0 命令可以查看外部RAM數據xData; ②R1 //顯示R1 register ~R1 //顯示變量R1 R1 = R7 //對寄存器Rx操作R1 = --R7 R1 = 0x20 ③main //顯示main()的開始地址d main //顯示main()的代碼④向RAM.ROM中寫數據Enter data_type address_type:address expr,expr.... data_type:int char DOUBLE float long E char data:0x20 1,2,3,4 //向data區0x20開始的地址寫1,2,3,4 變量放在RAM的30H,要把定義放在main前面!另外特別注意,內部RAM通常供C程序存放中間變量等,所以一定要看看編譯后的程序中是否存在存儲單元沖突的情況,比如如果程序中 使用了別的寄存器組的話,08-1FH單元就不能用了unsigned long data i _at_ 0x30

    標簽: keil 使用筆記

    上傳時間: 2013-11-05

    上傳用戶:dongqiangqiang

  • MPC106 PCI Bridge/Memory Contr

    In this document, the term Ô60xÕ is used to denote a 32-bit microprocessor from the PowerPC architecture family that conforms to the bus interface of the PowerPC 601ª, PowerPC 603ª, or PowerPC 604 microprocessors. Note that this does not include the PowerPC 602ª microprocessor which has a multiplexed address/data bus. 60x processors implement the PowerPC architecture as it is speciÞed for 32-bit addressing, which provides 32-bit effective (logical) addresses, integer data types of 8, 16, and 32 bits,and ßoating-point data types of 32 and 64 bits (single-precision and DOUBLE-precision).1.1 Overview The MPC106 provides an integrated high-bandwidth, high-performance, TTL-compatible interface between a 60x processor, a secondary (L2) cache or additional (up to four total) 60x processors, the PCI bus,and main memory. This section provides a block diagram showing the major functional units of the 106 and describes brießy how those units interact.Figure 1 shows the major functional units within the 106. Note that this is a conceptual block diagram intended to show the basic features rather than an attempt to show how these features are physically implemented on the device.

    標簽: Bridge Memory Contr MPC

    上傳時間: 2013-10-08

    上傳用戶:18711024007

  • XAPP806 -決定DDR反饋時鐘的最佳DCM相移

    This application note describes how to build a system that can be used for determining theoptimal phase shift for a DOUBLE Data Rate (DDR) memory feedback clock. In this system, theDDR memory is controlled by a controller that attaches to either the OPB or PLB and is used inan embedded microprocessor application. This reference system also uses a DCM that isconfigured so that the phase of its output clock can be changed while the system is running anda GPIO core that controls that phase shift. The GPIO output is controlled by a softwareapplication that can be run on a PowerPC® 405 or Microblaze™ microprocessor.

    標簽: XAPP 806 DDR DCM

    上傳時間: 2013-10-15

    上傳用戶:euroford

  • 基于FPGA的光纖光柵解調系統的研究

     波長信號的解調是實現光纖光柵傳感網絡的關鍵,基于現有的光纖光柵傳感器解調方法,提出一種基于FPGA的雙匹配光纖光柵解調方法,此系統是一種高速率、高精度、低成本的解調系統,并且通過引入雙匹配光柵有效地克服了雙值問題同時擴大了檢測范圍。分析了光纖光柵的測溫原理并給出了該方案軟硬件設計,綜合考慮系統的解調精度和FPGA的處理速度給出了基于拉格朗日的曲線擬合算法。 Abstract:  Sensor is one of the most important application of the fiber grating. Wavelength signal demodulating is the key techniques to carry out fiber grating sensing network, based on several existing methods of fiber grating sensor demodulation inadequate, a two-match fiber grating demodulation method was presented. This system is a high-speed, high precision, low-cost demodulation system. And by introducing a two-match grating effectively overcomes the problem of DOUBLE value while expands the scope of testing. This paper analyzes the principle of fiber Bragg grating temperature and gives the software and hardware design of the program. Considering the system of demodulation accuracy and processing speed of FPGA,this paper gives the curve fitting algorithm based on Lagrange.

    標簽: FPGA 光纖光柵 解調系統

    上傳時間: 2014-07-24

    上傳用戶:caiguoqing

  • XAPP806 -決定DDR反饋時鐘的最佳DCM相移

    This application note describes how to build a system that can be used for determining theoptimal phase shift for a DOUBLE Data Rate (DDR) memory feedback clock. In this system, theDDR memory is controlled by a controller that attaches to either the OPB or PLB and is used inan embedded microprocessor application. This reference system also uses a DCM that isconfigured so that the phase of its output clock can be changed while the system is running anda GPIO core that controls that phase shift. The GPIO output is controlled by a softwareapplication that can be run on a PowerPC® 405 or Microblaze™ microprocessor.

    標簽: XAPP 806 DDR DCM

    上傳時間: 2014-11-26

    上傳用戶:erkuizhang

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区3| 欧美精品免费视频| 国产精品系列在线| 蜜臀av一级做a爰片久久 | 亚洲欧美中文日韩v在线观看| 亚洲高清在线观看| 国产精品一区在线播放| 欧美日韩综合精品| 欧美久久成人| 欧美精品 国产精品| 久久久999精品视频| 午夜精品理论片| 亚洲影院免费观看| 午夜精品久久| 久久日韩粉嫩一区二区三区| 久久久精品久久久久| 国产综合欧美在线看| 久久在线观看视频| 久久久午夜电影| 亚洲一区二区免费在线| 亚洲精品中文字| 亚洲美女电影在线| 99国产精品久久久久久久| 一区二区三区www| 亚洲永久网站| 久久精品官网| 老鸭窝毛片一区二区三区| 狼狼综合久久久久综合网| 欧美国产一区在线| 欧美午夜一区二区| 国产一区在线观看视频| 极品尤物av久久免费看 | 激情亚洲一区二区三区四区| 在线观看欧美精品| 国产欧美一区二区三区久久人妖| 国产一区在线视频| 国产精品日本欧美一区二区三区| 久久精品亚洲热| 久久久久久亚洲精品杨幂换脸| 久久久久久9| 久久夜色精品国产欧美乱| 你懂的视频欧美| 国产精品草草| 国产一区亚洲一区| 日韩午夜一区| 亚洲欧美清纯在线制服| 免费观看在线综合色| 国产精品高潮视频| 亚洲第一区中文99精品| 国产伦精品一区二区三区照片91 | 欧美亚洲一级片| 国产午夜精品理论片a级探花| 午夜视频在线观看一区二区三区 | 欧美午夜宅男影院| 国产日韩欧美一区在线| 亚洲一级一区| 久热精品视频在线观看| 久久综合成人精品亚洲另类欧美 | 在线精品视频一区二区| 久久久国产精品一区二区中文| 伊人久久大香线| 欧美午夜大胆人体| 欧美成人福利视频| 欧美日韩第一区日日骚| 欧美揉bbbbb揉bbbbb| 亚洲调教视频在线观看| 亚洲综合久久久久| 久久久久久久久久久成人| 91久久国产精品91久久性色| 精品1区2区| 亚洲视频日本| 国产精品日韩欧美一区| 国产精品青草久久| 国产日韩欧美精品综合| 最新精品在线| 亚洲一区二区三区激情| 久久久精品一品道一区| 国产精品毛片高清在线完整版| 亚洲激情偷拍| 欧美资源在线| 国产精品色网| aaa亚洲精品一二三区| 欧美mv日韩mv国产网站app| 国产日韩欧美不卡| 午夜在线观看免费一区| 国产精品99免费看 | 国产一区91| 亚洲欧美日韩一区二区在线| 免费在线看一区| 国产综合一区二区| 亚洲尤物精选| 国产精品福利av| 亚洲人成网站精品片在线观看| 理论片一区二区在线| 国产一区二区成人| 欧美在线看片a免费观看| 国产精品一卡| 亚洲欧美日韩综合aⅴ视频| 国产精品成人观看视频免费| 亚洲国产日韩欧美在线图片| 久久久亚洲高清| 在线观看久久av| 欧美国产日韩免费| 一区二区成人精品| 国产精品视频yy9299一区| 欧美一级播放| 伊人久久大香线蕉av超碰演员| 欧美chengren| 亚洲视频 欧洲视频| 国产精品欧美经典| 欧美一区亚洲二区| 精品96久久久久久中文字幕无| 美国成人直播| 一区二区高清在线| 国产丝袜一区二区| 欧美成在线观看| 99精品欧美一区二区三区综合在线| 欧美日韩另类视频| 欧美在线视频一区二区| 一区二区三区自拍| 欧美精品综合| 欧美一二三视频| 亚洲福利视频专区| 国产精品观看| 久久综合伊人| 亚洲主播在线观看| 在线成人欧美| 国产精品久久久久久久久婷婷| 久久精品国产96久久久香蕉| 亚洲日本欧美日韩高观看| 国产精品欧美激情| 欧美mv日韩mv国产网站app| 亚洲在线视频观看| 亚洲成色777777女色窝| 国产精品久99| 欧美国产日韩xxxxx| 亚洲欧美一区二区原创| 亚洲国产欧美一区二区三区丁香婷| 国产精品国产自产拍高清av| 免费看的黄色欧美网站| 亚洲欧美日韩精品| 亚洲日本va午夜在线电影| 国产欧美日本| 国产精品99免视看9| 男人的天堂亚洲在线| 午夜精品久久久久影视| 日韩亚洲一区二区| 亚洲国产精品美女| 国产尤物精品| 国产精品一区二区男女羞羞无遮挡| 欧美国产高潮xxxx1819| 久久亚洲国产成人| 欧美一级理论片| 国产精品99久久久久久www| 亚洲精品国产系列| 亚洲动漫精品| 在线观看成人小视频| 国产日产欧美a一级在线| 欧美日韩一区二区在线播放| 鲁鲁狠狠狠7777一区二区| 久久久国产精品一区二区中文 | 亚洲美女在线看| 在线播放日韩| 伊人精品成人久久综合软件| 国内精品视频在线播放| 国产欧美日韩精品a在线观看| 欧美日韩一级黄| 欧美人与性禽动交情品 | 欧美色欧美亚洲高清在线视频| 蜜臀久久久99精品久久久久久| 久久精品视频免费| 久久国产天堂福利天堂| 久久不射中文字幕| 久久精品视频在线播放| 久久精品视频免费播放| 久久久久久亚洲精品不卡4k岛国| 久久国产毛片| 久久深夜福利免费观看| 久久久久国产一区二区三区四区 | 欧美国产综合视频| 媚黑女一区二区| 欧美xx69| 欧美日韩高清免费| 国产精品va| 国产日韩欧美一二三区| 韩日视频一区| 亚洲国产欧美一区| 日韩视频免费在线| 可以免费看不卡的av网站| 久久成人18免费网站| 久久久精品一品道一区| 蜜臀av一级做a爰片久久| 欧美国产欧美亚州国产日韩mv天天看完整| 欧美aⅴ一区二区三区视频| 欧美三区在线视频| 国产欧美综合一区二区三区| 狠狠色狠色综合曰曰| 日韩视频在线一区二区| 亚洲欧美激情视频在线观看一区二区三区| 篠田优中文在线播放第一区|