摘要: 串行傳輸技術(shù)具有更高的傳輸速率和更低的設(shè)計成本, 已成為業(yè)界首選, 被廣泛應(yīng)用于高速通信領(lǐng)域。提出了一種新的高速串行傳輸接口的設(shè)計方案, 改進(jìn)了Aurora 協(xié)議數(shù)據(jù)幀格式定義的弊端, 并采用高速串行收發(fā)器Rocket I/O, 實現(xiàn)數(shù)據(jù)率為2.5 Gbps的高速串行傳輸。關(guān)鍵詞: 高速串行傳輸; Rocket I/O; Aurora 協(xié)議 為促使FPGA 芯片與串行傳輸技術(shù)更好地結(jié)合以滿足市場需求, Xilinx 公司適時推出了內(nèi)嵌高速串行收發(fā)器RocketI/O 的Virtex II Pro 系列FPGA 和可升級的小型鏈路層協(xié)議———Aurora 協(xié)議。Rocket I/O支持從622 Mbps 至3.125 Gbps的全雙工傳輸速率, 還具有8 B/10 B 編解碼、時鐘生成及恢復(fù)等功能, 可以理想地適用于芯片之間或背板的高速串行數(shù)據(jù)傳輸。Aurora 協(xié)議是為專有上層協(xié)議或行業(yè)標(biāo)準(zhǔn)的上層協(xié)議提供透明接口的第一款串行互連協(xié)議, 可用于高速線性通路之間的點到點串行數(shù)據(jù)傳輸, 同時其可擴(kuò)展的帶寬, 為系統(tǒng)設(shè)計人員提供了所需要的靈活性[4]。但該協(xié)議幀格式的定義存在弊端,會導(dǎo)致系統(tǒng)資源的浪費。本文提出的設(shè)計方案可以改進(jìn)Aurora 協(xié)議的固有缺陷,提高系統(tǒng)性能, 實現(xiàn)數(shù)據(jù)率為2.5 Gbps 的高速串行傳輸, 具有良好的可行性和廣闊的應(yīng)用前景。
標(biāo)簽: Rocket 2.5 高速串行 收發(fā)器
上傳時間: 2013-10-13
上傳用戶:lml1234lml
數(shù)字運算,判斷一個數(shù)是否接近素數(shù) A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上傳時間: 2015-05-21
上傳用戶:daguda
源代碼\用動態(tài)規(guī)劃算法計算序列關(guān)系個數(shù) 用關(guān)系"<"和"="將3個數(shù)a,b,c依次序排列時,有13種不同的序列關(guān)系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要將n個數(shù)依序列,設(shè)計一個動態(tài)規(guī)劃算法,計算出有多少種不同的序列關(guān)系, 要求算法只占用O(n),只耗時O(n*n).
標(biāo)簽: lt 源代碼 動態(tài)規(guī)劃 序列
上傳時間: 2013-12-26
上傳用戶:siguazgb
A1200 Telnet 在刷機+破解補丁后,手機支持Telnet。在安裝MPKG,通過MPKG安裝上Loader,可以下載USBLAN驅(qū)動: 把下載的A1200 Telnet.rar里的文件解壓到一個臨時目錄里,雙擊install.bat。這一步是先拷貝A1200的USB LAN的驅(qū)動。 手機Modem模式連接電腦,點擊Loader笑臉圖標(biāo),電腦上將發(fā)現(xiàn)新硬件,驅(qū)動指向到臨時目錄里,安裝A1200的USB LAN驅(qū)動。在安裝成功后,在cmd命令行下,輸入命令ipconfig,應(yīng)能看到192.168.16.1的IP地址,輸入 telnet 192.168.16.2,在出來的界面輸入root,即成功Telnet,可以輸入linux命令,如dir。要退出輸入exit。 瀏覽器瀏覽手機內(nèi)部文件:電腦上開始,運行,輸入 \\192.168.16.2\system。 如果手機連接電腦得到是其他的IP地址,手機IP地址為看到的IP加1。開始-運行,輸入cmd,回車,在cmd命令行下輸入ipconfig查看IP地址,如果看到的是為172.16.16.5,則使用telnet 172.16.16.6。 瀏覽器瀏覽手機內(nèi)部文件:電腦上開始,運行,輸入 \\172.16.16.6\system。
上傳時間: 2015-11-11
上傳用戶:獨孤求源
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
標(biāo)簽: converts Toolbox complex logical
上傳時間: 2016-02-12
上傳用戶:a673761058
Modbus協(xié)議,中文版 前 言 第一部分:Modbus協(xié)議 1 引言 2 縮略語 3 背景概要 4 總體描述 5 功能碼分類 6 功能碼描述 7 MODBUS異常響應(yīng) 的實現(xiàn)指南 1 引言 2 Modbus數(shù)據(jù)鏈路層 3 物理層 4 安裝和文件 5 實現(xiàn)等級 6 附錄 Modbus .org Modbus Application Protocol Specification 第三部分:Modbus協(xié)議在TCP/IP上 1 引言 2 縮略語 3 背景概要 4 功能描述 5 實現(xiàn)指南
上傳時間: 2013-12-27
上傳用戶:ztj182002
漢諾塔!?。? Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C
標(biāo)簽: the animation Simulate movement
上傳時間: 2017-02-11
上傳用戶:waizhang
nx=length(x(:)); if nargin<2 || isempty(win) win=nx; end if nargin<4 || isempty(m) m=''; end nwin=length(win); if nwin == 1 lw = win; w = ones(1,lw); else lw = nwin; w = win(:)'; end
標(biāo)簽: 能頻值
上傳時間: 2019-09-23
上傳用戶:minwenji
家電維修(最基礎(chǔ)的教程B)1-20.Torrent
上傳時間: 2013-06-10
上傳用戶:eeworm
專輯類-實用電子技術(shù)專輯-385冊-3.609G jk-b交通信號控制機原理圖-1.3M.zip
上傳時間: 2013-08-02
上傳用戶:zhf1234
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1