代码搜索:delay_ms
找到约 3,401 项符合「delay_ms」的源代码
代码结果 3,401
www.eeworm.com/read/28423/998385
c delay_ms().c
void delay_ms(uint ms)
{
uint i;
while(ms--)
{
for(i=0;i
www.eeworm.com/read/227997/14403821
c kbv10work.c
#include "reg52.h"
#include "stdio.h"
typedef unsigned char uchar;
typedef unsigned int uint;
#define XBYTE ((uchar *) 0x50000L)
#define PRESSKEY_MAX 5
#define MAX_LEN 16
#define WAIT
www.eeworm.com/read/493553/6395406
c rx.c
char temp,error;
main ()
{
TRISB = 0;
PORTB = 0;
TRISD = 0x80;
PORTD = 0;
Man_Receive_Config(&PORTD, 7); // Configure and synchronize receiver
wh
www.eeworm.com/read/334103/12634219
c delay.c
/*延时函数*/
void delay_ms(unsigned int i) {
unsigned int a;
unsigned char b;
for (a = 1; a < i; a++) {
for (b = 1; b; b++) {
;
}
}
}
www.eeworm.com/read/389095/8548516
h common.h
void Delay_ms(unsigned long nValue);
void Delay_us(unsigned long nValue);
www.eeworm.com/read/280600/10309580
h common.h
void Delay_ms(unsigned long nValue);
void Delay_us(unsigned long nValue);
www.eeworm.com/read/436083/7777477
h common.h
void Delay_ms(unsigned long nValue);
void Delay_us(unsigned long nValue);