代码搜索:delay_ms

找到约 3,401 项符合「delay_ms」的源代码

代码结果 3,401
www.eeworm.com/read/199402/7861310

h comm.h

void delay_us( int time ); void delay_ms( unsigned int time );
www.eeworm.com/read/311075/13635890

h common.h

void Delay_ms(unsigned long nValue); void Delay_us(unsigned long nValue);
www.eeworm.com/read/486629/6537084

h common.h

void Delay_ms(unsigned long nValue); void Delay_us(unsigned long nValue);
www.eeworm.com/read/259017/11826929

h common.h

void Delay_ms(unsigned long nValue); void Delay_us(unsigned long nValue);
www.eeworm.com/read/228647/14371762

c float.c

/********************************************************* 586_ad1.c Fast single channel ADS7852 11-18-2002 U12, AD7852, 8 channles, 12-bit, parallel interface CLKT=J1.4 output 18.432 MHz as
www.eeworm.com/read/474008/6828618

h common.h

void Delay_ms(unsigned long nValue); void Delay_us(unsigned long nValue);
www.eeworm.com/read/101167/15842903

c flsh_alm.c

#ifdef DESCRIPTION Flasher Alarm This is a simple design to alert a driver in a noisy truck when a turn signal has been left on for an extended period of time. Normally, the +12V for the flashe
www.eeworm.com/read/290012/8512122

c delay.c

//======================================================== //51单片机外部晶振为12Mhz //======================================================== /*1ms延时*/ void delay_1ms(void) {
www.eeworm.com/read/286972/8734160

c gsm.c

#ifndef WIN32 #include //#include //#include //#include //#include #endif //define the uart buffer size,the u
www.eeworm.com/read/382461/9025303

c base.c

#include "base.h" void delay_ms(int ms) {uchar i; uint j; for(j=2*ms;j>0;j--) for(i=250;i>0;i--); }