亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
亚洲自拍偷拍色片视频| 国语自产精品视频在线看抢先版结局| 亚洲高清不卡| 久久久亚洲成人| 免费成人美女女| 狂野欧美一区| 欧美四级在线观看| 欧美午夜精彩| 国产日韩欧美精品在线| 悠悠资源网亚洲青| 在线免费观看欧美| 国产精品福利网| 国产精品免费aⅴ片在线观看| 欧美色图首页| 欧美美女福利视频| 一区二区在线视频播放| 亚洲精品视频二区| 亚洲欧美激情视频| 欧美激情一区二区三区全黄| 欧美精品一卡二卡| 国产啪精品视频| 亚洲人成在线播放网站岛国| 欧美一区二区在线播放| 欧美激情一区二区三区全黄| 久久本道综合色狠狠五月| 欧美肥婆在线| 国产日韩欧美成人| 一本色道久久88亚洲综合88| 久久久久国产一区二区| 狠狠色丁香久久婷婷综合_中| 99国内精品久久| 欧美成人午夜视频| 国内精品国语自产拍在线观看| 日韩小视频在线观看专区| 久久久久久免费| 国产日韩欧美| 国产精一区二区三区| 亚洲免费在线看| 欧美片第一页| 亚洲国产激情| 久久婷婷国产麻豆91天堂| 国产精品成人在线观看| 亚洲品质自拍| 欧美不卡在线| 国产综合色精品一区二区三区| 亚洲欧洲视频在线| 久久视频国产精品免费视频在线| 国产精品一区一区三区| 亚洲午夜精品久久| 国产精品久久久一区麻豆最新章节| 日韩午夜三级在线| 欧美精品一区三区| 9色精品在线| 久久激情网站| 国产精品亚洲激情 | 欧美xart系列在线观看| 欧美精品 日韩| 亚洲欧美一区二区原创| 国产精品日韩欧美一区| 亚洲精品自在在线观看| 欧美日韩日日骚| 亚洲伊人伊色伊影伊综合网| 欧美天堂亚洲电影院在线观看| 国产精品99久久久久久www| 欧美美女bb生活片| 亚洲性夜色噜噜噜7777| 亚洲欧美综合| 国内外成人免费激情在线视频网站| 久久福利一区| 亚洲福利国产| 欧美日本视频在线| 亚洲在线观看视频网站| 国内精品久久久久久影视8| 国产精品白丝av嫩草影院| 欧美夜福利tv在线| 亚洲国产精品一区制服丝袜| 欧美精品网站| 午夜亚洲福利在线老司机| 一区在线影院| 欧美日韩免费观看一区二区三区| 亚洲福利在线观看| 国产精品成人aaaaa网站| 欧美一区二区三区四区在线观看地址 | 99在线精品视频在线观看| 欧美日韩亚洲一区三区| 久久精品国产99国产精品| 亚洲经典一区| 国产一区二区三区四区在线观看| 欧美激情在线播放| 在线一区观看| 在线日韩av片| 99日韩精品| 亚洲人精品午夜| 国产情人节一区| 欧美高清一区| 久久久久久久综合狠狠综合| 蜜乳av另类精品一区二区| 亚洲欧美在线一区二区| 亚洲看片免费| 国产精品国产三级国产普通话99| 亚洲一区二区在线看| 精品不卡视频| 国产精品有限公司| 欧美日韩亚洲不卡| 国产精品视频| 欧美激情综合色| 欧美日韩国产123区| 久久精品综合一区| 亚洲欧美日韩精品久久久| 狠久久av成人天堂| 国产精品人成在线观看免费 | 亚洲欧美精品在线观看| 国产一区二区0| 欧美日韩一区二区在线 | 国产一区二区三区网站| 欧美日韩亚洲免费| 欧美伦理视频网站| 欧美成人r级一区二区三区| 久久久激情视频| 久久久综合网站| 欧美一区二区在线免费观看 | 久久成人精品| 亚洲欧美在线视频观看| 亚洲一本视频| 午夜精品av| 午夜亚洲伦理| 久久精品一区中文字幕| 欧美在线视频观看| 欧美 日韩 国产一区二区在线视频| 久久精品视频播放| 久久国产成人| 久久男女视频| 亚洲视频欧洲视频| 亚洲欧美日韩国产成人精品影院| 亚洲一卡久久| 中文日韩在线| 欧美一区二区免费| 亚洲新中文字幕| 欧美在线观看天堂一区二区三区| 亚洲激情综合| 日韩特黄影片| 欧美一区国产一区| 亚洲视频一二三| 午夜在线精品偷拍| 久久精品国产一区二区电影| 国产精品国产三级国产aⅴ浪潮| 国产精品v欧美精品v日本精品动漫| 夜夜夜久久久| 亚洲毛片一区二区| 另类图片国产| 国内精品嫩模av私拍在线观看| 国产婷婷一区二区| 亚洲欧美色婷婷| 国产一区清纯| 亚洲欧美日韩一区二区在线| 在线视频中文亚洲| 午夜精品福利在线| 久久狠狠久久综合桃花| 老司机午夜精品| 国产日韩欧美精品一区| 亚洲高清在线观看| 亚洲天堂久久| 美女精品国产| 国产精品男人爽免费视频1 | 国产午夜精品美女视频明星a级| 国产综合精品一区| 99riav久久精品riav| 久久久久久久一区| 欧美日韩一区二区国产| 精品va天堂亚洲国产| 午夜精品一区二区在线观看| 欧美韩日精品| 国内视频精品| 亚洲欧美另类在线| 欧美精品在线一区二区| 娇妻被交换粗又大又硬视频欧美| 一区二区三区回区在观看免费视频| 久久久精品动漫| 国产区二精品视| 亚洲国产精品悠悠久久琪琪| 欧美成人激情在线| 韩国亚洲精品| 久久精品亚洲一区二区| 国产精品视频yy9099| 中文精品视频| 欧美日韩精品一区二区在线播放 | 99国产精品国产精品毛片| 久久精品99国产精品| 国产精品私房写真福利视频| 亚洲免费精品| 亚洲毛片av在线| 欧美日韩国产在线播放| 亚洲精品123区| 美女网站在线免费欧美精品| 国产在线视频欧美一区二区三区| 午夜精品久久久久久久男人的天堂| 欧美精品手机在线| 欧美成人在线免费观看| 久久久久久国产精品mv| 好吊妞**欧美|