www.pudn.com > uCOS+GUI.rar > Delay.C
/*
*********************************************************************************************************
* 文件: Delay.C
* 描述: 硬延时函数.
* 编写: 深思 (001-12345@sohu.com).
*********************************************************************************************************
*/
#include "headers.h"
void Delay(INT32U Delay_Time)
{
while (Delay_Time) --Delay_Time;
}
/*
********************************************************************************************************
* End.
********************************************************************************************************
*/