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

PRESS-How

  • 飞思卡尔S12处理器培训讲义

    飞思卡尔S12处理器培训讲义   In this LAB, we will: Get familiar with CodeWarrior 4.7 IDE; How to work with project wizard; Light the LEDs

    标签: S12 飞思卡尔 处理器 培训讲义

    上传时间: 2013-11-13

    上传用户:LIKE

  • 移动无线终端导航AFE和数据转换器

    Abstract: High-speed and low-speed data converters serve critical functions in modern broadband mobile radios. This application note outlines how todetermine high-speed data converter performance requirements in baseband sampling radio architectures. Also, system partition strategies andadvantages are outlined when considering a high-speed analog front-end (AFE) solution.

    标签: AFE 移动 无线终端 导航

    上传时间: 2013-11-02

    上传用户:jjj0202

  • 通过整合硬件分立收发器简化AISG的控制系统

    Abstract: This article describes the Antenna Interface Standards Group (AISG) standard in telecommunications and details itshardware implementation. It explains how a fully integrated transceiver such as the MAX9947 can help reduce space and cost, andsolve bus arbitrations in base-station tower equipment.

    标签: AISG 硬件 分立收发器 控制系统

    上传时间: 2014-12-30

    上传用户:wangchong

  • 错误观念妨碍电量计在无线手机中的应用

    Abstract: Most hand-held products lack accurate battery-charge monitors ("fuel gauges") because of the misconception that an accurate fuel gauge is difficult to achieve. This article debunks the myths and discusses how to accurately monitor charge at all temperatures, charge and discharge rates, and aging conditions. 无线通信和数据在新一代手机和PDA中的融合为再一次的生产力飞跃创造了条件。。随之而来的将是经济的增长和全新的工作方式,在便携式计算机领域,PC笔记本曾经扮演了类似的开拓者角角。

    标签: 错误 电量计 无线 手机

    上传时间: 2013-10-17

    上传用户:erkuizhang

  • 差分電路中單端及混合模式S-參數的使用

    Single-Ended and Differential S-Parameters Differential circuits have been important incommunication systems for many years. In the past,differential communication circuits operated at lowfrequencies, where they could be designed andanalyzed using lumped-element models andtechniques. With the frequency of operationincreasing beyond 1GHz, and above 1Gbps fordigital communications, this lumped-elementapproach is no longer valid, because the physicalsize of the circuit approaches the size of awavelength.Distributed models and analysis techniques are nowused instead of lumped-element techniques.Scattering parameters, or S-parameters, have beendeveloped for this purpose [1]. These S-parametersare defined for single-ended networks. S-parameterscan be used to describe differential networks, but astrict definition was not developed until Bockelmanand others addressed this issue [2]. Bockelman’swork also included a study on how to adapt single-ended S-parameters for use with differential circuits[2]. This adaptation, called “mixed-mode S-parameters,” addresses differential and common-mode operation, as well as the conversion betweenthe two modes of operation.This application note will explain the use of single-ended and mixed-mode S-parameters, and the basicconcepts of microwave measurement calibration.

    标签: 差分電路 單端 模式

    上传时间: 2014-03-25

    上传用户:yyyyyyyyyy

  • 错误观念妨碍电量计在无线手机中的应用

    Abstract: Most hand-held products lack accurate battery-charge monitors ("fuel gauges") because of the misconception that an accurate fuel gauge is difficult to achieve. This article debunks the myths and discusses how to accurately monitor charge at all temperatures, charge and discharge rates, and aging conditions.

    标签: 错误 电量计 无线 手机

    上传时间: 2014-03-18

    上传用户:wenwiang

  • 数字逻辑与微处理器VHDL设计

    This book is about the digital logic design of microprocessors. It is intended to provide both an understanding of the basic principles of digital logic design, and how these fundamental principles are applied in the building of complex microprocessor circuits using current technologies.

    标签: VHDL 数字逻辑 微处理器

    上传时间: 2013-10-14

    上传用户:leyesome

  • 基于(英蓓特)STM32V100的串口程序

    This example provides a description of how  to use the USART with hardware flowcontrol and communicate with the Hyperterminal.First, the USART2 sends the TxBuffer to the hyperterminal and still waiting fora string from the hyperterminal that you must enter which must end by '\r'character (keypad ENTER button). Each byte received is retransmitted to theHyperterminal. The string that you have entered is stored in the RxBuffer array. The receivebuffer have a RxBufferSize bytes as maximum. The USART2 is configured as follow:    - BaudRate = 115200 baud      - Word Length = 8 Bits    - One Stop Bit    - No parity    - Hardware flow control enabled (RTS and CTS signals)    - Receive and transmit enabled    - USART Clock disabled    - USART CPOL: Clock is active low    - USART CPHA: Data is captured on the second edge     - USART LastBit: The clock pulse of the last data bit is not output to                      the SCLK pin

    标签: V100 STM 100 32V

    上传时间: 2013-10-31

    上传用户:yy_cn

  • 基于(英蓓特)STM32V100的看门狗程序

    This example shows how to update at regulate period the WWDG counter using theEarly Wakeup interrupt (EWI). The WWDG timeout is set to 262ms, refresh window set to 41h and the EWI isenabled. When the WWDG counter reaches 40h the EWI is generated and in the WWDGISR the counter is refreshed to prevent a WWDG reset and led connected to PC.07is toggled.The EXTI line9 is connected to PB.09 pin and configured to generate an interrupton falling edge.In the NVIC, EXTI line9 to 5 interrupt vector is enabled with priority equal to 0and the WWDG interrupt vector is enabled with priority equal to 1 (EXTI IT > WWDG IT). The EXTI Line9 will be used to simulate a software failure: once the EXTI line9event occurs (by pressing Key push-button on EVAL board) the correspondent interruptis served, in the ISR the led connected to PC.07 is turned off and the EXTI line9pending bit is not cleared. So the CPU will execute indefinitely EXTI line9 ISR andthe WWDG ISR will never be entered(WWDG counter not updated). As result, when theWWDG counter falls to 3Fh the WWDG reset occurs.If the EXTI line9 event don抰 occurs the WWDG counter is indefinitely refreshed inthe WWDG ISR which prevent from WWDG reset. If the WWDG reset is generated, after resuming from reset a led connected to PC.06is turned on. In this example the system is clocked by the HSE(8MHz).

    标签: V100 STM 100 32V

    上传时间: 2013-11-11

    上传用户:gundamwzc

  • Foundation入门—仿真

    Explain how to open the Waveform Viewer for Verification ? State how to insert nodes into the Waveform Viewer ? Tell how to assign Stimulus with the Stimulator Selector

    标签: Foundation 仿真

    上传时间: 2013-11-05

    上传用户:gps6888