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

MHz

  • 一.高精度延时, 是 CPU 测速的基础 Windows 内部有一个精度非常高的定时器, 精度在微秒级, 但不同的系统这个定时器的频率不同, 这个频率与硬件和操作系统都可能有关。 利用 API

    一.高精度延时, 是 CPU 测速的基础 Windows 内部有一个精度非常高的定时器, 精度在微秒级, 但不同的系统这个定时器的频率不同, 这个频率与硬件和操作系统都可能有关。 利用 API 函数 QueryPerformanceFrequency 可以得到这个定时器的频率。 利用 API 函数 QueryPerformanceCounter 可以得到定时器的当前值。 根据要延时的时间和定时器的频率, 可以算出要延时的时间定时器经过的周期数。 在循环里用 QueryPerformanceCounter 不停的读出定时器值, 一直到经过了指定周期数再结束循环, 就达到了高精度延时的目的。 高精度延时的程序, 参数: 微秒 二.测速程序 利用 rdtsc 汇编指令可以得到 CPU 内部定时器的值, 每经过一个 CPU 周期, 这个定时器就加一。 如果在一段时间内数得 CPU 的周期数, CPU工作频率 = 周期数 / 时间 为了不让其他进程和线程打扰, 必需要设置最高的优先级 以下函数设置当前进程和线程到最高的优先级。 SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS) SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL) CPU 测速程序的源代码, 这个程序通过 CPU 在 1/16 秒的时间内经过的周期数计算出工作频率, 单位 MHz:

    标签: Windows CPU API 定时器

    上传时间: 2015-04-28

    上传用户:iswlkje

  • TIMER.ASM ********* [ milindhp@tifrvax.tifr.res.in ] Set Processor configuration word as = 000

    TIMER.ASM ********* [ milindhp@tifrvax.tifr.res.in ] Set Processor configuration word as = 0000 0000 1010 b. a] -MCLR tied to VDD (internally). b] Code protection off. c] WDT disabled. d] Internal RC oscillator [4 MHz].

    标签: configuration Processor milindhp tifrvax

    上传时间: 2015-05-24

    上传用户:wqxstar

  • Features • Compatible with MCS-51® Products • 8K Bytes of In-System Programmable (ISP

    Features • Compatible with MCS-51® Products • 8K Bytes of In-System Programmable (ISP) Flash Memory – Endurance: 1000 Write/Erase Cycles • 4.0V to 5.5V Operating Range • Fully Static Operation: 0 Hz to 33 MHz • Three-level Program Memory Lock • 256 x 8-bit Internal RAM • 32 Programmable I/O Lines • Three 16-bit Timer/Counters • Eight Interrupt Sources • Full Duplex UART Serial Channel • Low-power Idle and Power-down Modes • Interrupt Recovery from Power-down Mode • Watchdog Timer • Dual Data Pointer • Power-off Flag

    标签: 8226 Programmable Compatible In-System

    上传时间: 2015-06-27

    上传用户:dianxin61

  • 术是继直接频率合成和间接频率合成之后

    术是继直接频率合成和间接频率合成之后,随有4~20倍可编程时钟乘法电路,系统最高时钟可达300 MHz,输出频率可达120 MHz,频率转化速度小于1μs。内部有12位D/A转化器、48位可编程频率寄存器和

    标签: 频率合成

    上传时间: 2015-08-04

    上传用户:hoperingcong

  • /*** *** *** *** *** *** *** *** *** *** *** *** *** *** / /* LCM 240128 显示程序 */ /* MCU 型号: Winbon

    /*** *** *** *** *** *** *** *** *** *** *** *** *** *** / /* LCM 240128 显示程序 */ /* MCU 型号: Winbond W78E58-24 */ /* 时钟频率: 22.1184 MHz */ /* 接口方式: 直接接口(挂总线) */ /* 开发环境: Keil C51 V6.14 */ /* 开发日期: 2001.06.12- */ /* 程序编写: Youth */

    标签: 240128 Winbon LCM MCU

    上传时间: 2015-09-02

    上传用户:1079836864

  • 无线通信系统 1、系统由一个主站

    无线通信系统 1、系统由一个主站,多个从站组成。主站以轮询方式收集从站的数据,每次传输一组仿真数据。 2、从站有两组数字信号。从站传输哪一组数据由主站决定。 3、设计制作无线半双工收发单元,其工作频率(400-500)MHz中自行选择,各收发单元工作频率的相对准确性(以主站工作频率为基准)优于10-4。所有收发单元的发射功率不大于1w。 4、主从站收发天线长度 1m,垂直放置。 5、主站能实时显示发送数据的从站好及其数据。从站能实时显示本站发送给主站的数据;从站采用电池供电。

    标签: 无线通信系统 主站

    上传时间: 2014-01-19

    上传用户:l254587896

  • This leon3 design is tailored to the Altera NiosII Startix2 Development board, with 16-bit DDR SDR

    This leon3 design is tailored to the Altera NiosII Startix2 Development board, with 16-bit DDR SDRAM and 2 Mbyte of SSRAM. As of this time, the DDR interface only works up to 120 MHz. At 130, DDR data can be read but not written. NOTE: the test bench cannot be simulated with DDR enabled because the Altera pads do not have the correct delay models. * How to program the flash prom with a FPGA programming file 1. Create a hex file of the programming file with Quartus. 2. Convert it to srecord and adjust the load address: objcopy --adjust-vma=0x800000 output_file.hexout -O srec fpga.srec 3. Program the flash memory using grmon: flash erase 0x800000 0xb00000 flash load fpga.srec

    标签: Development Startix2 tailored Altera

    上传时间: 2014-01-18

    上传用户:chongcongying

  • Ideal for large low power (nanoWatt) and connectivity applications that benefit from the availabilit

    Ideal for large low power (nanoWatt) and connectivity applications that benefit from the availability of four serial ports: double synchronous serial ports (I² C™ and SPI™ ) and double asynchronous (LIN capable) serial ports. Large amounts of RAM memory for buffering and FLASH program memory make it ideal for instrumentation panels, TCP/IP enabled embedded applications as well as metering and industrial control and monitoring applications. While operating up to 40 MHz, it is also backward software and hardware compatible with the PIC18F8720.

    标签: connectivity applications availabilit nanoWatt

    上传时间: 2016-02-04

    上传用户:CHINA526

  • RFID标准:iso18000-6(英文版)。 Information technology — Radio-frequency identification for item management

    RFID标准:iso18000-6(英文版)。 Information technology — Radio-frequency identification for item management — Part 6: Parameters for air interface communications at 860 MHz to 960 MHz

    标签: Radio-frequency identification Information technology

    上传时间: 2014-01-16

    上传用户:cainaifa

  • Information technology — Radio frequency identification for item management — Part 3: Parameters f

    Information technology — Radio frequency identification for item management — Part 3: Parameters for air interface communications at 13,56 MHz

    标签: identification Information technology Parameters

    上传时间: 2014-01-21

    上传用户:llandlu