搜索资源列表
单片机C语言的精确延时程序设计
- 单片机C语言的精确延时程序设计,很有用的哦- The monolithic integrated circuit C language precise time delay programming, is very useful oh
51单片机 Keil C 延时程序的简单研究
- 转载!希望大家喜欢.主要是介绍用C编的C51的延时程序.-reproduced! Hope you like them. Mainly introduces C51 C series of procedural delay.
51单片机Keil C延时程序的简单研究
- 51单片机Keil C延时程序的简单研究-51 SCM Keil C Delay simple procedure study
8051keil延时程序
- 8051设计延时程序说明。-8051 design descr iption of the procedures.
C51单片机中的C语言精确延时的资料和例子
- 基于单片机的精确延时原理,及其常用的方法,其中给出了详细的程序,使读者方便易懂
51延时程序
- 51延时程序,包括C与汇编语言
51单片机Keil C延时程序的简单研究
- 51单片机Keil C延时程序的简单研究-51 SCM Keil C Delay simple procedure study
8051keil延时程序
- 8051设计延时程序说明。-8051 design descr iption of the procedures.
能延时退出的阻塞式socket函数的设计
- 摘 要:介绍了Win32平台(Windows95/98/NT)下socket的阻塞和非阻塞两种工作模式。结合两个具体程序模型,讨论了在网络环境下发送/接收数据使用阻塞式socket的必要性和不足之处,并提出用能延时退出的阻塞式socket读写函数的解决方案。-Abstract : the Win32 platform (describes) socket obstruction and two non-blocking mode. Co
单片机C语言的精确延时程序设计
- 单片机C语言的精确延时程序设计,很有用的哦- The monolithic integrated circuit C language precise time delay programming, is very useful oh
51单片机 Keil C 延时程序的简单研究
- 转载!希望大家喜欢.主要是介绍用C编的C51的延时程序.-reproduced! Hope you like them. Mainly introduces C51 C series of procedural delay.
CPU 测速(MHz)和高精度延时(微秒级)
- 一.高精度延时, 是 CPU 测速的基础 Windows 内部有一个精度非常高的定时器, 精度在微秒级, 但不同的系统这个定时器的频率不同, 这个频率与硬件和操作系统都可能有关。 利用 API 函数 QueryPerformanceFrequency 可以得到这个定时器的频率。 利用 API 函数 QueryPerformanceCounter 可以得到定时器的当前值。 根据要延时的时间和定时器的频率, 可以算出要
avrtc
- 针对avr单片机编的精确延时程序,可达1微妙-against avr microcontroller series of the precision delay procedures, up to a delicate
TMS320F2812delay
- DSP延时程序-DSP delay procedures
EV_TIME1_1MS
- 利用DSP EV模块实现1ms延时程序,需根据具体使用时钟频率 -use DSP Module 1ms delay procedures required under the specific use of the clock frequency
c_delay
- 几个精确C语言延时程序.1:500ms 2:200ms. 3:10ms.4:1s.-Several precision C language delay procedures .1:500 ms 2:200 ms.3: 10ms.4: 1s.
yanshi
- 实际应用汇编用于延时程序。小试验的应用程序-Compilation of the practical application of procedures for delay. Small test application
延时程序
- 延时程序,自己整理的一个延时程序集合,可以方便调用直接使用不需要计算(Delay procedures, finishing a collection of their own delay procedures, you can easily call the direct use, do not need to calculate)
STM8S105定时器2精确延时
- STM8S105的定时器2的精确延时程序(STM8S105 timer 2 precise delay program)
单片机的精确延时的方法
- 单片机的精确延时的方法 /* 对一个变量int操作和char操作的指令时间不同,所以延时不一样,导致总线错误 char是单字节变量,int是双字节变量,单字节变量自减1和双字节变量自减1耗费 的CPU时间是不同的,换句话说,双字节变量自减1的操作时间要长于单字节变量, 而你这个延时程序纯粹就是靠CPU循环进行固定次数的自减操作实现的,所以 单字节变量变成双字节变量以后,自减操作的次数不变,延时时间会增长。 */(The p