虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Directly

  • Nios II软件开发人员手册中的缓存和紧耦合存储器部分

            Nios II 软件开发人员手册中的缓存和紧耦合存储器部分 Nios® II embedded processor cores can contain instruction and data caches. This chapter discusses cache-related issues that you need to consider to guarantee that your program executes correctly on the Nios II processor. Fortunately, most software based on the Nios II hardware abstraction layer (HAL) works correctly without any special accommodations for caches. However, some software must manage the cache Directly. For code that needs direct control over the cache, the Nios II architecture provides facilities to perform the following actions:

    标签: Nios 软件开发 存储器

    上传时间: 2013-10-25

    上传用户:虫虫虫虫虫虫

  • Nios II定制指令用户指南

         Nios II定制指令用户指南:With the Altera Nios II embedded processor, you as the system designer can accelerate time-critical software algorithms by adding custom instructions to the Nios II processor instruction set. Using custom instructions, you can reduce a complex sequence of standard instructions to a single instruction implemented in hardware. You can use this feature for a variety of applications, for example, to optimize software inner loops for digital signal processing (DSP), packet header processing, and computation-intensive applications. The Nios II configuration wizard,part of the Quartus® II software’s SOPC Builder, provides a graphical user interface (GUI) used to add up to 256 custom instructions to the Nios II processor. The custom instruction logic connects Directly to the Nios II arithmetic logic unit (ALU) as shown in Figure 1–1.

    标签: Nios 定制 指令 用户

    上传时间: 2013-10-12

    上传用户:kang1923

  • ADC简化测量高阻抗传感器

      Delta-sigma ADCs, with their high accuracy and high noiseimmunity, are ideal for Directly measuring many typesof sensors. Nevertheless, input sampling currents canoverwhelm high source impedances or low-bandwidth,micropower signal conditioning circuits. The LTC®2484family of delta sigma converters solves this problem bybalancing the input currents, thussimplifying or eliminatingthe need for signal conditioning circuits.

    标签: ADC 测量 传感器 高阻抗

    上传时间: 2015-01-03

    上传用户:潜水的三贡

  • SL811开发资料_包含源程序_电路图_芯片资料

    SL811开发资料_包含源程序_电路图_芯片资料:SL811HS Embedded USB Host/Slave Controller.The SL811HS is an Embedded USB Host/Slave Controller capable of communicate with either full-speed or low-speed USB peripherals. The SL811HS can interface to devices such as microprocessors, microcontrollers, DSPs, or Directly to a variety of buses such as ISA, PCMCIA, and others. The SL811HS USB Host Controller conforms to USB Specification 1.1.The SL811HS USB Host/Slave Controller incorporates USB Serial Interface functionality along with internal full-/low-speed transceivers.The SL811HS supports and operates in USB full-speed mode at 12 Mbps, or at low-speed 1.5-Mbps mode.The SL811HS data port and microprocessor interface provide an 8-bit data path I/O or DMA bidirectional, with interrupt support to allow easy interface to standard microprocessors or microcontrollers such as Motorola or Intel CPUs and many others. Internally,the SL811HS contains a 256-byte RAM data buffer which is used for control registers and data buffer.The available package types offered are a 28-pin PLCC (SL811HS) and a 48-pin TQFP package (SL811HST-AC). Both packages operate at 3.3 VDC. The I/O interface logic is 5V-tolerant.

    标签: 811 SL 开发资料 源程序

    上传时间: 2013-12-22

    上传用户:a82531317

  • Generating next numbers in SQLServer should not be a problem. But problems arise when a customer ask

    Generating next numbers in SQLServer should not be a problem. But problems arise when a customer asks for different types of next numbers that you cannot generate Directly from SQL Server. This brief article describes how you would tackle this problem in different scenarios.

    标签: Generating SQLServer customer problems

    上传时间: 2015-01-11

    上传用户:as275944189

  • pdnMesh is an automatic mesh generator and solver for Finite Element problems. It will also do post-

    pdnMesh is an automatic mesh generator and solver for Finite Element problems. It will also do post-processing to generate contour plots and Postscript printouts. GUI support using GTK or MFC (Win32) is available. The problem definition can be done in any form and given to pdnMesh as an input data file. Drawing Exchange Format (DXF) files can be Directly imported to pdnmesh. The quality and the coarseness of the mesh can be controlled by giving input parameters.

    标签: automatic generator problems pdnMesh

    上传时间: 2013-12-19

    上传用户:cuibaigao

  • LPC2148 USB Audio Device Example This USB example project implements an USB Audio Device that conne

    LPC2148 USB Audio Device Example This USB example project implements an USB Audio Device that connects via the USB interface to the PC. It may be used on the following devices: LPC2141 LPC2142 LPC2144 LPC2146 LPC2148 An USB Audio Device (HID) does not require any special USB driver, since the USB Audio support is already built into Windows 2000 and Windows XP. Therefore USB Audio devices can be Directly connected to the computer. This example project is designed to work with Keil MCB2140 Evaluation Board. Refer to Running USBAudio for information on how to operate this example project.

    标签: Device USB Audio implements

    上传时间: 2015-04-16

    上传用户:VRMMO

  • PrintNow is a 32-bit application that runs only under Windows 95 or Windows NT 4.0. It allows your

    PrintNow is a 32-bit application that runs only under Windows 95 or Windows NT 4.0. It allows your PrtScr and Alt+PrtScr keys to print a screen capture Directly to your printer instead of just copying the image to the Windows clipboard. PrintNow can also print any DIB image in the clipboard, regardless of its original source. PrintNow supports multiple instances, it can print multiple copies of a screen capture to the same printer with different print settings, to several different printers, or any combination thereof, with a single keystroke.

    标签: Windows application PrintNow allows

    上传时间: 2015-04-27

    上传用户:zhanditian

  • Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to w

    Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can Directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is my initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.

    标签: available libraries Although nearly

    上传时间: 2014-01-22

    上传用户:zhoujunzhen

  • his folder contains the following files: 1. 02490rxP802-15_SG3a-Channel-Modeling-Subcommittee-Repor

    his folder contains the following files: 1. 02490rxP802-15_SG3a-Channel-Modeling-Subcommittee-Report-Final.doc: This is the final report of the channel modeling sub-committee. 2. cmx_imr.csv (x=1, 2, 3, and 4) represent the files containing the actual 100 channel realizations for CM1, CM2, CM3, and CM4. The columns are organized as (time, amp, time, amp,...) 3. cmx_imr_np.csv (x=1, 2, 3, and 4) represent the files containing the number of paths in each of the 100 multipath realizations. 4. cmx_imr.mat (x=1, 2, 3, and 4) are the .mat files that can be loaded Directly into Matlab (TM). 5. *.m files are the Matlab (TM) files used to generate the various channel realizations.

    标签: a-Channel-Modeling-Subcommittee-R following contains folder

    上传时间: 2013-12-21

    上传用户:hxy200501