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

蟲蟲首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

pre-implemented

  • WP369可擴(kuò)展式處理平臺(tái)-各種嵌入式系統(tǒng)的理想解決方案

    WP369可擴(kuò)展式處理平臺(tái)-各種嵌入式系統(tǒng)的理想解決方案 :Delivering unrivaled levels of system performance,flexibility, scalability, and integration to developers,Xilinx's architecture for a new Extensible Processing Platform is optimized for system power, cost, and size. Based on ARM's dual-core Cortex™-A9 MPCore processors and Xilinx’s 28 nm programmable logic,the Extensible Processing Platform takes a processor-centric approach by defining a comprehensive processor system implemented with standard design methods. This approach provides Software Developers a familiar programming environment within an optimized, full featured,powerful, yet low-cost, low-power processing platform.

    標(biāo)簽: 369 WP 擴(kuò)展式 處理平臺(tái)

    上傳時(shí)間: 2013-10-18

    上傳用戶:cursor

  • 擴(kuò)頻通信芯片STEL-2000A的FPGA實(shí)現(xiàn)

    針對(duì)傳統(tǒng)集成電路(ASIC)功能固定、升級(jí)困難等缺點(diǎn),利用FPGA實(shí)現(xiàn)了擴(kuò)頻通信芯片STEL-2000A的核心功能。使用ISE提供的DDS IP核實(shí)現(xiàn)NCO模塊,在下變頻模塊調(diào)用了硬核乘法器并引入CIC濾波器進(jìn)行低通濾波,給出了DQPSK解調(diào)的原理和實(shí)現(xiàn)方法,推導(dǎo)出一種簡(jiǎn)便的引入?仔/4固定相移的實(shí)現(xiàn)方法。采用模塊化的設(shè)計(jì)方法使用VHDL語(yǔ)言編寫出源程序,在Virtex-II Pro 開發(fā)板上成功實(shí)現(xiàn)了整個(gè)系統(tǒng)。測(cè)試結(jié)果表明該系統(tǒng)正確實(shí)現(xiàn)了STEL-2000A的核心功能。 Abstract:  To overcome drawbacks of ASIC such as fixed functionality and upgrade difficulty, FPGA was used to realize the core functions of STEL-2000A. This paper used the DDS IP core provided by ISE to realize the NCO module, called hard core multiplier and implemented CIC filter in the down converter, described the principle and implementation detail of the demodulation of DQPSK, and derived a simple method to introduce a fixed phase shift of ?仔/4. The VHDL source code was designed by modularity method , and the complete system was successfully implemented on Virtex-II Pro development board. Test results indicate that this system successfully realize the core function of the STEL-2000A.

    標(biāo)簽: STEL 2000 FPGA 擴(kuò)頻通信

    上傳時(shí)間: 2013-11-19

    上傳用戶:neu_liyan

  • Virtex-5 GTP Transceiver Wizar

    The LogiCORE™ GTP Wizard automates the task of creating HDL wrappers to configure the high-speed serial GTP transceivers in Virtex™-5 LXT and SXT devices. The menu-driven interface allows one or more GTP transceivers to be configured using pre-definedtemplates for popular industry standards, or from scratch, to support a wide variety of custom protocols.The Wizard produces a wrapper, an example design, and a testbench for rapid integration and verification of the serial interface with your custom function Features• Creates customized HDL wrappers to configureVirtex-5 RocketIO™ GTP transceivers• Users can configure Virtex-5 GTP transceivers toconform to industry standard protocols usingpredefined templates, or tailor the templates forcustom protocols• Included protocol templates provide support for thefollowing specifications: Aurora, CPRI, FibreChannel 1x, Gigabit Ethernet, HD-SDI, OBSAI,OC3, OC12, OC48, PCI Express® (PCIe®), SATA,SATA II, and XAUI• Automatically configures analog settings• Each custom wrapper includes example design, testbench; and both implementation and simulation scripts

    標(biāo)簽: Transceiver Virtex Wizar GTP

    上傳時(shí)間: 2013-10-20

    上傳用戶:dave520l

  • 單片機(jī)12864液晶時(shí)鐘顯示程序

    12864液晶時(shí)鐘顯示程序 LCD 地址變量 ;**************變量的定義***************** RS             BIT      P2.0            ;LCD數(shù)據(jù)/命令選擇端(H/L) RW             BIT      P2.1          ;LCD讀/寫選擇端(H/L) EP             BIT      P2.2            ;LCD使能控制 PSB        EQU P2.3 RST        EQU P2.5 PRE            BIT      P1.4            ;調(diào)整鍵(K1) ADJ            BIT      P1.5            ;調(diào)整鍵(K2) COMDAT         EQU P0 LED        EQU P0.3 YEAR           DATA      18H            ;年,月,日變量 MONTH          DATA      19H DATE           DATA      1AH WEEK           DATA      1BH HOUR           DATA      1CH            ;時(shí),分,秒,百分之一秒變量 MIN            DATA      1DH SEC            DATA      1EH SEC100         DATA      1FH STATE          DATA      23H LEAP           BIT      STATE.1            ;是否閏年標(biāo)志1--閏年,0--平年 KEY_S          DATA      24H            ;當(dāng)前掃描鍵值 KEY_V          DATA      25H            ;上次掃描鍵值 DIS_BUF_U0      DATA      26H            ;LCD第一排顯示緩沖區(qū) DIS_BUF_U1      DATA      27H DIS_BUF_U2      DATA      28H DIS_BUF_U3      DATA      29H DIS_BUF_U4      DATA      2AH DIS_BUF_U5      DATA      2BH DIS_BUF_U6      DATA      2CH DIS_BUF_U7      DATA      2DH DIS_BUF_U8      DATA      2EH DIS_BUF_U9      DATA      2FH DIS_BUF_U10     DATA      30H DIS_BUF_U11     DATA      31H DIS_BUF_U12     DATA      32H DIS_BUF_U13     DATA      33H DIS_BUF_U14     DATA      34H DIS_BUF_U15     DATA      35H DIS_BUF_L0      DATA      36H            ;LCD第三排顯示緩沖區(qū) DIS_BUF_L1      DATA      37H DIS_BUF_L2      DATA      38H DIS_BUF_L3      DATA      39H DIS_BUF_L4      DATA      3AH DIS_BUF_L5      DATA      3BH DIS_BUF_L6      DATA      3CH DIS_BUF_L7      DATA      3DH DIS_BUF_L8      DATA      3EH DIS_BUF_L9      DATA      3FH DIS_BUF_L10     DATA      40H DIS_BUF_L11     DATA      41H DIS_BUF_L12     DATA      42H DIS_BUF_L13     DATA      43H DIS_BUF_L14     DATA      44H DIS_BUF_L15     DATA      45H FLAG            DATA      46H ;1-年,2-月,3-日,4-時(shí),5-分,6-秒,7-退出調(diào)整。 DIS_H           DATA      47H DIS_M           DATA      48H DIS_S           DATA      49H

    標(biāo)簽: 12864 單片機(jī) 液晶時(shí)鐘 顯示程序

    上傳時(shí)間: 2013-12-25

    上傳用戶:wvbxj

  • title=Windows NT/2000/XP 一個(gè)RAM-DISK文件系統(tǒng)驅(qū)動(dòng) memo=SwapFs is a driver for Windows NT/2000/XP that let yo

    title=Windows NT/2000/XP 一個(gè)RAM-DISK文件系統(tǒng)驅(qū)動(dòng) memo=SwapFs is a driver for Windows NT/2000/XP that let you use a Linux swap partition for temporary storage, like a RAM-disk. It is possible to put Windows page file on it. It is implemented as a disk filter driver.

    標(biāo)簽: Windows 2000 RAM-DISK SwapFs

    上傳時(shí)間: 2015-02-04

    上傳用戶:ljmwh2000

  • title=Windows NT/2000/XP 一個(gè)RAM-DISK文件系統(tǒng)驅(qū)動(dòng) memo=SwapFs is a driver for Windows NT/2000/XP that let yo

    title=Windows NT/2000/XP 一個(gè)RAM-DISK文件系統(tǒng)驅(qū)動(dòng) memo=SwapFs is a driver for Windows NT/2000/XP that let you use a Linux swap partition for temporary storage, like a RAM-disk. It is possible to put Windows page file on it. It is implemented as a disk filter driver.

    標(biāo)簽: Windows 2000 RAM-DISK SwapFs

    上傳時(shí)間: 2014-01-25

    上傳用戶:sdq_123

  • HomerMX is a message exchange service for wireless message formats such as SMS and MMS. HomerMX is a

    HomerMX is a message exchange service for wireless message formats such as SMS and MMS. HomerMX is a Web Services-based (SOAP/WSDL) gateway that is implemented in J2EE and runs under JBoss. It currently supports SMPP and Nokia s MMS.

    標(biāo)簽: HomerMX message exchange wireless

    上傳時(shí)間: 2014-01-04

    上傳用戶:huangld

  • Locally weighted polynomial regression LWPR is a popular instance based al gorithm for learning c

    Locally weighted polynomial regression LWPR is a popular instance based al gorithm for learning continuous non linear mappings For more than two or three in puts and for more than a few thousand dat apoints the computational expense of pre dictions is daunting We discuss drawbacks with previous approaches to dealing with this problem

    標(biāo)簽: polynomial regression weighted instance

    上傳時(shí)間: 2013-11-28

    上傳用戶:sunjet

  • FPFilter is a sample disk filter driver that demonstrates how a disk failure prediction filter drive

    FPFilter is a sample disk filter driver that demonstrates how a disk failure prediction filter driver could be implemented. A failure prediction filter driver can predict when a disk may fail and notify the disk driver stack of this condition.

    標(biāo)簽: filter disk demonstrates prediction

    上傳時(shí)間: 2015-03-30

    上傳用戶:變形金剛

  • The ICA/BSS algorithms are pure mathematical formulas, powerful, but rather mechanical procedures: T

    The ICA/BSS algorithms are pure mathematical formulas, powerful, but rather mechanical procedures: There is not very much left for the user to do after the machinery has been optimally implemented. The successful and efficient use of the ICALAB strongly depends on a priori knowledge, common sense and appropriate use of the preprocessing and postprocessing tools. In other words, it is preprocessing of data and postprocessing of models where expertise is truly ne

    標(biāo)簽: mathematical algorithms mechanical procedures

    上傳時(shí)間: 2015-03-31

    上傳用戶:silenthink

主站蜘蛛池模板: 疏勒县| 城固县| 金秀| 天津市| 宁强县| 宣汉县| 隆林| 新乐市| 高碑店市| 时尚| 宁陵县| 德惠市| 长治市| 鹿泉市| 阆中市| 四子王旗| 胶南市| 灵石县| 时尚| 齐齐哈尔市| 灵山县| 鄢陵县| 瑞安市| 平湖市| 神木县| 龙泉市| 黄平县| 汉源县| 鲁山县| 枣阳市| 雅安市| 甘肃省| 天津市| 南雄市| 五莲县| 天等县| 沛县| 昌宁县| 资中县| 湘潭市| 双城市|