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

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

Pre-processor

  • 集成PowerQUICC處理器的MPC8313E簡介

    This document provides an overview of the MPC8313E PowerQUICC™II Pro processor features, including a block diagram showing the major functional components.

    標簽: PowerQUICC 8313E 8313 MPC

    上傳時間: 2013-11-20

    上傳用戶:myworkpost

  • XAPP996-雙處理器參考設計套件

    This is the Xilinx Dual Processor Reference Designs suite. The designs illustrate a few differentdual-core architectures based on the MicroBlaze™ and PowerPC™ processors. The designsillustrate various concepts described in the Xilinx White Paper WP262 titled, “DesigningMultiprocessor Systems in Platform Studio”. There are simple software applications includedwith the reference designs that show various forms of interaction between the two processors.

    標簽: XAPP 996 雙處理器 參考設計

    上傳時間: 2013-10-29

    上傳用戶:旭521

  • NIOSII用戶定制指令

    With the Altera Nios II embedded processor, you as the system designercan accelerate time-critical software algorithms by adding custominstructions to the Nios II processor instruction set. Using custominstructions, you can reduce a complex sequence of standard instructionsto a single instruction implemented in hardware. You can use this featurefor a variety of applications, for example, to optimize software innerloops for digital signal processing (DSP), packet header processing, andcomputation-intensive applications. The Nios II configuration wizard,part of the Quartus® II software’s SOPC Builder, provides a graphicaluser interface (GUI) used to add up to 256 custom instructions to theNios II processor

    標簽: NIOSII 用戶 定制 指令

    上傳時間: 2013-11-07

    上傳用戶:swing

  • 多徑信道下OFDM系統定時同步算法

    文中在pre-FFT定時同步算法的基礎上提出一個新的定時同步算法及其改進算法,該算法利用規則集對相關函數和導函數優化的方法得以進一步減小估計方差,本文在給出其推導過程的基礎上給出了仿真結果,并與相關算法進行比較,結果表明新算法的定時估計精度較高且具有一定的魯棒性。

    標簽: OFDM 多徑信道 定時同步算法

    上傳時間: 2013-10-29

    上傳用戶:hebmuljb

  • LPC4300系列ARM雙核微控制器產品數據手冊

    The LPC4350/30/20/10 are ARM Cortex-M4 based microcontrollers for embeddedapplications. The ARM Cortex-M4 is a next generation core that offers systemenhancements such as low power consumption, enhanced debug features, and a highlevel of support block integration.The LPC4350/30/20/10 operate at CPU frequencies of up to 150 MHz. The ARMCortex-M4 CPU incorporates a 3-stage pipeline, uses a Harvard architecture withseparate local instruction and data buses as well as a third bus for peripherals, andincludes an internal prefetch unit that supports speculative branching. The ARMCortex-M4 supports single-cycle digital signal processing and SIMD instructions. Ahardware floating-point processor is integrated in the core.The LPC4350/30/20/10 include an ARM Cortex-M0 coprocessor, up to 264 kB of datamemory, advanced configurable peripherals such as the State Configurable Timer (SCT)and the Serial General Purpose I/O (SGPIO) interface, two High-speed USB controllers,Ethernet, LCD, an external memory controller, and multiple digital and analog peripherals

    標簽: 4300 LPC ARM 雙核微控制器

    上傳時間: 2013-10-28

    上傳用戶:15501536189

  • 時鐘恢復設計_英文版

    Today in many applications such as network switches, routers, multi-computers,and processor-memory interfaces, the ability to integrate hundreds of multi-gigabit I/Os is desired to make better use of the rapidly advancing IC technology.

    標簽: 時鐘恢復 英文

    上傳時間: 2013-10-30

    上傳用戶:ysjing

  • 基于GT-800的貼片機控制系統

    摘要:介紹了基于數字信號處理(Digital Signal Processor,DSP)的運動控制器GT-800在貼片機控制系統中的應用。該系統采用以PC機為上位機、GT-800運動控制器為下位機的硬件結構,上下位機之間的通訊采用基于ISA總線的雙端口RAM的模式,系統的軟件設計采用基于VisualC++6.0的軟件設計模式。關鍵詞:GT-800運動控制器;貼片機;運動控制;機器視覺

    標簽: 800 GT 貼片機 控制系統

    上傳時間: 2013-10-18

    上傳用戶:asdkin

  • 單片機12864液晶時鐘顯示程序

    12864液晶時鐘顯示程序 LCD 地址變量 ;**************變量的定義***************** RS             BIT      P2.0            ;LCD數據/命令選擇端(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            ;調整鍵(K1) ADJ            BIT      P1.5            ;調整鍵(K2) COMDAT         EQU P0 LED        EQU P0.3 YEAR           DATA      18H            ;年,月,日變量 MONTH          DATA      19H DATE           DATA      1AH WEEK           DATA      1BH HOUR           DATA      1CH            ;時,分,秒,百分之一秒變量 MIN            DATA      1DH SEC            DATA      1EH SEC100         DATA      1FH STATE          DATA      23H LEAP           BIT      STATE.1            ;是否閏年標志1--閏年,0--平年 KEY_S          DATA      24H            ;當前掃描鍵值 KEY_V          DATA      25H            ;上次掃描鍵值 DIS_BUF_U0      DATA      26H            ;LCD第一排顯示緩沖區 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第三排顯示緩沖區 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-時,5-分,6-秒,7-退出調整。 DIS_H           DATA      47H DIS_M           DATA      48H DIS_S           DATA      49H

    標簽: 12864 單片機 液晶時鐘 顯示程序

    上傳時間: 2013-11-09

    上傳用戶:xingisme

  • 遠程配置Nios II處理器應用筆記

         通過以太網遠程配置Nios II 處理器 應用筆記 Firmware in embedded hardware systems is frequently updated over the Ethernet. For embedded systems that comprise a discrete microprocessor and the devices it controls, the firmware is the software image run by the microprocessor. When the embedded system includes an FPGA, firmware updates include updates of the hardware image on the FPGA. If the FPGA includes a Nios® II soft processor, you can upgrade both the Nios II processor—as part of the FPGA image—and the software that the Nios II processor runs, in a single remote configuration session.

    標簽: Nios 遠程 處理器 應用筆記

    上傳時間: 2013-11-22

    上傳用戶:chaisz

  • 面向Eclips的Nios II軟件構建工具手冊

    面向Eclips的Nios II軟件構建工具手冊 The Nios® II Software Build Tools (SBT) for Eclipse™ is a set of plugins based on the Eclipse™ framework and the Eclipse C/C++ development toolkit (CDT) plugins. The Nios II SBT for Eclipse provides a consistent development platform that works for all Nios II embedded processor systems. You can accomplish all Nios II software development tasks within Eclipse, including creating, editing, building, running, debugging, and profiling programs.

    標簽: Eclips Nios 軟件

    上傳時間: 2013-11-02

    上傳用戶:瓦力瓦力hong

主站蜘蛛池模板: 连城县| 长海县| 枣强县| 祁阳县| 惠安县| 贵南县| 枣阳市| 庆城县| 元江| 孟州市| 新河县| 固始县| 迭部县| 贺州市| 江源县| 错那县| 习水县| 松江区| 鹿泉市| 龙游县| 平塘县| 鹤岗市| 顺平县| 平果县| 合作市| 社会| 密山市| 浏阳市| 临沧市| 阳江市| 招远市| 中方县| 兴国县| 共和县| 尼木县| 枞阳县| 涟源市| 吉首市| 岳阳市| 黑河市| 巴东县|