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

Virtex6_hdl RAM

  • 在使用单片机作为控制cpu时

    在使用单片机作为控制cpu时,请稍作简化,具体的PID参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算,而将所有参数全部用整数,运算到最后再除以一个2的N次方数据(相当于移位),作类似定点数运算,可大大提高运算速度,根据控制精度的不同要求,当精度要求很高时,注意保留移位引起的“余数”,做好余数补偿。这个程序只是一般常用pid算法的基本架构,没有包含输入输出处理部分。

    标签: cpu 用单片机 控制

    上传时间: 2016-02-05

    上传用户:1109003457

  • FIFO电路(first in

    FIFO电路(first in,first out),内部藏有16bit×16word的Dual port RAM,依次读出已经写入的数据。因为不存在Address输入,所以请自行设计内藏的读写指针。由FIFO电路输出的EF信号(表示RAM内部的数据为空)和FF信号(表示RAM内部的数据为满)来表示RAM内部的状态,并且控制FIFO的输入信号WEN(写使能)和REN(读使能)。以及为了更好得控制FIFO电路,AEF(表示RAM内部的数据即将空)信号也同时输出。

    标签: first FIFO in 电路

    上传时间: 2016-02-06

    上传用户:zhoujunzhen

  • μC/OS-II Goals Probably the most important goal of μC/OS-II was to make it backward compatible with

    μC/OS-II Goals Probably the most important goal of μC/OS-II was to make it backward compatible with μC/OS (at least from an application’s standpoint). A μC/OS port might need to be modified to work with μC/OS-II but at least, the application code should require only minor changes (if any). Also, because μC/OS-II is based on the same core as μC/OS, it is just as reliable. I added conditional compilation to allow you to further reduce the amount of RAM (i.e. data space) needed by μC/OS-II. This is especially useful when you have resource limited products. I also added the feature described in the previous section and cleaned up the code. Where the book is concerned, I wanted to clarify some of the concepts described in the first edition and provide additional explanations about how μC/OS-II works. I had numerous requests about doing a chapter on how to port μC/OS and thus, such a chapter has been included in this book for μC/OS-II.

    标签: OS-II compatible important Probably

    上传时间: 2013-12-02

    上传用户:jkhjkh1982

  • DSP2812的直流斩波调速程序

    DSP2812的直流斩波调速程序,已经做出了实物,能成功的烧写到了FLASH了用CCS2000调试用不同的CMD文件在RAM中运行或在FLASH中运行

    标签: 2812 DSP 直流 斩波

    上传时间: 2016-02-26

    上传用户:gououo

  • S3C2410的ADS工程

    S3C2410的ADS工程,有内存映射,可在RAM中调试中断

    标签: S3C2410 ADS 工程

    上传时间: 2014-01-02

    上传用户:佳期如梦

  • 电赛一等奖作品:音频信号分析仪的FPGA源码

    电赛一等奖作品:音频信号分析仪的FPGA源码,VHDL编写,Quartus7.1综合,ModelSim6.2g se仿真,应用了opencores.org上的开源FFT IP核,加入了8051总线接口和ram

    标签: FPGA 音频信号分析仪 源码

    上传时间: 2013-12-29

    上传用户:yoleeson

  • NAME Control_AT24Cxx This collection of routines allows an AT89C2051 microcontroller to read a

    NAME Control_AT24Cxx This collection of routines allows an AT89C2051 microcontroller to read and write the AT24Cxx family of serial CMOS EEPROMS. This version of the code is compatible only with the AT89C2051 due to the location of the data buffer and stack in RAM. The code may be modified to work with the AT89C1051 by relocating or resizing the buffer and stack to fit into the smaller amount of RAM available in the AT89C1051. Note that the minimum size of the buffer is determined by the page size of the AT24Cxx.

    标签: microcontroller Control_AT collection routines

    上传时间: 2013-12-13

    上传用户:asddsd

  • STM32F103xx增强型系列数据手册 数据手册是有关产品技术特征的基本描述

    STM32F103xx增强型系列数据手册 数据手册是有关产品技术特征的基本描述,包含产品的基本配置(如内置Flash和RAM的容量、外设的数量等),管脚的数量和分配,电气特性,封装信息,和定购代码等

    标签: F103 STM 103 32F

    上传时间: 2016-03-09

    上传用户:yxgi5

  • 监控程序(Monitor)的主要功能是对应用系统硬件及底层软件进行调试

    监控程序(Monitor)的主要功能是对应用系统硬件及底层软件进行调试,也称为Debug程序,是最基本的调试工具。MC9S12DG128的Flash有128K,RAM有8K,而监控程序源代码占用不到3K FLASH,占用23字节RAM。这对用户程序的空间影响并不大。异步串行口是要用来做与PC通讯服务的,监控程序可以用,应用程序当然也可以使用。

    标签: Monitor 监控程序 应用系统 底层

    上传时间: 2014-01-12

    上传用户:皇族传媒

  • 这是一个比较典型的PID处理程序

    这是一个比较典型的PID处理程序,在使用单片机作为控制cpu时,请稍作简化,具体的PID参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算,而将所有参数全部用整数,运算 到最后再除以一个2的N次方数据(相当于移位),作类似定点数运算,可大大提高运算速度,根据控制精度的不同要求,当精度要求很高时,注意保留移位引起的“余数”,做好余数补偿。这个程序只是一般常用pid算法的基本架构,没有包含输入输出处理部分。

    标签: PID 比较 典型 处理程序

    上传时间: 2014-12-20

    上传用户:nairui21