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

Time-Delay

  • Wiley 2009新书 Multicarrier Communications

    ·Multicarrier Communications: Lie-Liang Yang Wiley | ISBN: 0470722002 | 2009-03-03 ,696 pages    Benefiting from both time-domain and frequency-domain signal processing techniques, multi

    标签: nbsp Communications Multicarrier Wiley

    上传时间: 2013-04-24

    上传用户:prczsf

  • Digital Control of Dynamic Systems (3rd Edition) (Hardcover)

    ·Stanford&IBM牛人经典之作 -  Digital Control of Dynamic SystemsEditorial ReviewsProduct DescriptionThis well-respected, market-leading text discusses the use of digital computers in the real-time co

    标签: nbsp Hardcover Digital Control

    上传时间: 2013-07-31

    上传用户:cuiyashuo

  • MATLAB7.0在TI_C2000_DSP系统设计中的应用

    · 摘要:  传统的DSP软件开发都是先设计DSP上的算法并仿真然后将其写成特定DSP的代码(c或是汇编)在目标板上实现.介绍了一种新的高效、集成的DSP软件设计方法.利用MATLAB7.0新提供的Embeded Target for TI C2000 DSP、simulink、Real-Time Workshop和TI的CCS IDE相结合,在MATLAB环境下生成DSP的C代

    标签: MATLAB 2000 TI_C 7.0

    上传时间: 2013-07-26

    上传用户:hebmuljb

  • Allegro SPB V15.2 版新增功能

    15.2 已經加入了有關貫孔及銲點的Z軸延遲計算功能. 先開啟 Setup - Constraints - Electrical constraint sets  下的 DRC 選項.  點選 Electrical Constraints dialog box 下 Options 頁面 勾選 Z-Axis delay栏. 

    标签: Allegro 15.2 SPB

    上传时间: 2013-10-08

    上传用户:王庆才

  • [美国.时代周刊].Time

    没事多学习一下英语

    标签: Time 美国 时代周刊

    上传时间: 2013-10-29

    上传用户:ukuk

  • 凌力尔特工业信号链路

    Industrial systems demand semiconductors that are precise, flexibleand reliable. Linear Technology offers a broad line of high performanceanalog ICs that simplify system design with rugged devices featuringparameters fully guaranteed over the -40°C to 85°C temperature range.We back this up with knowledgeable applications support, long productlife cycles and superior on-time delivery.

    标签: 凌力尔特 工业信号 链路

    上传时间: 2013-11-02

    上传用户:xiaodu1124

  • 音频数模转换器DAC抖动的灵敏度分析

    Abstract: This application note describes how sampling clock jitter (time interval error or "TIE jitter") affectsthe performance of delta-sigma digital-to-analog converters (DACs). New insights explain the importanceof separately specifying low-frequency (< 2x passband frequency) and high-frequency or wideband (> 2xpassband frequency) jitter tolerance in these devices. The article also provides an application example ofa simple highly jittered cycle-skipped sampling clock and describes a method for generating a properbroadband jittered clock. The document then goes on to compare Maxim's audio DAC jitter tolerance tocompetitor audio DACs. Maxim's exceptionally high jitter tolerance allows very simple and low-cost sampleclock implementations.

    标签: DAC 音频 数模转换器 抖动

    上传时间: 2013-10-25

    上传用户:banyou

  • Arduino学习笔记A10_Arduino数码管骰子实验

    电路连接 由于数码管品种多样,还有共阴共阳的,下面我们使用一个数码管段码生成器(在文章结尾) 去解决不同数码管的问题: 本例作者利用手头现有的一位不知品牌的共阳数码管:型号D5611 A/B,在Eagle 找了一个 类似的型号SA56-11,引脚功能一样可以直接代换。所以下面电路图使用SA56-11 做引脚说明。 注意: 1. 将数码管的a~g 段,分别接到Arduino 的D0~D6 上面。如果你手上的数码管未知的话,可以通过通电测量它哪个引脚对应哪个字段,然后找出a~g 即可。 2. 分清共阴还是共阳。共阴的话,接220Ω电阻到电源负极;共阳的话,接220Ω电阻到电源+5v。 3. 220Ω电阻视数码管实际工作亮度与手头现有原件而定,不一定需要准确。 4. 按下按钮即停。   源代码 由于我是按照段码生成器默认接法接的,所以不用修改段码生成器了,直接在段码生成器选择共阳极,再按“自动”生成数组就搞定。   下面是源代码,由于偷懒不用写循环,使用了部分AVR 语句。 PORTD 这个是AVR 的端口输出控制语句,8 位对应D7~D0,PORTD=00001001 就是D3 和D0 是高电平。 PORTD = a;就是找出相应的段码输出到D7~D0。 DDRD 这个是AVR 语句中控制引脚作为输出/输入的语句。DDRD = 0xFF;就是D0~D7 全部 作为输出脚了。 ARDUINO CODECOPY /* Arduino 单数码管骰子 Ansifa 2011-12-28 */ //定义段码表,表中十个元素由LED 段码生成器生成,选择了共阳极。 inta[10] = {0xC0, 0xF9, 0xA4, 0xB0, 0x99, 0x92, 0x82, 0xF8, 0x80, 0x90}; voidsetup() { DDRD = 0xFF; //AVR 定义PortD 的低七位全部用作输出使用。即0xFF=B11111111对 应D7~D0 pinMode(12, INPUT); //D12用来做骰子暂停的开关 } voidloop() { for(int i = 0; i < 10; i++) { //将段码输出PortD 的低7位,即Arduino 的引脚D0~D6,这样需要取出PORTD 最高位,即 D7的状态,与段码相加,之后再输出。 PORTD = a[i]; delay(50); //延时50ms while(digitalRead(12)) {} //如果D12引脚高电平,则在此死循环,暂停LED 跑 动 } }      

    标签: Arduino 10 数码管 实验

    上传时间: 2013-10-15

    上传用户:baitouyu

  • MAX17600数据资料

     The MAX17600–MAX17605 devices are high-speedMOSFET drivers capable of sinking /sourcing 4A peakcurrents. The devices have various inverting and noninvertingpart options that provide greater flexibility incontrolling the MOSFET. The devices have internal logiccircuitry that prevents shoot-through during output-statchanges. The logic inputs are protected against voltagespikes up to +14V, regardless of VDD voltage. Propagationdelay time is minimized and matched between the dualchannels. The devices have very fast switching time,combined with short propagation delays (12ns typ),making them ideal for high-frequency circuits. Thedevices operate from a +4V to +14V single powersupply and typically consume 1mA of supply current.The MAX17600/MAX17601 have standard TTLinput logic levels, while the MAX17603 /MAX17604/MAX17605 have CMOS-like high-noise margin (HNM)input logic levels. The MAX17600/MAX17603 are dualinverting input drivers, the MAX17601/MAX17604 aredual noninverting input drivers, and the MAX17602 /MAX17605 devices have one noninverting and oneinverting input. These devices are provided with enablepins (ENA, ENB) for better control of driver operation.

    标签: 17600 MAX 数据资料

    上传时间: 2013-12-20

    上传用户:zhangxin

  • 如何选择合适的Logger按钮

    Abstract: For many first-time users, finding the right logger that meets their needs can be a challenging task. In simple

    标签: Logger 如何选择 按钮

    上传时间: 2014-01-19

    上传用户:缥缈