/************************** Copyright (c) **********************************
|
** FUZHOU FUGUANG ELECTRONICS Co.,LTD.
|
** ¸£Öݸ£¹âµç×ÓÓÐÏÞ¹«Ë¾
|
** http://www.fuguang.com
|
**
|
**-------------- File Info -------------------------------------------------
|
** File name: Delay.c
|
** Last modified Date: 2008-11-16
|
** Last Version: 1.0
|
** Descriptions: Delay functions
|
**
|
**--------------------------------------------------------------------------
|
** Created by: mxpopstar
|
** Created date: 2008-11-16
|
** Version: 1.0
|
** Descriptions: The original version
|
**
|
**--------------------------------------------------------------------------
|
** Modified by: mxpopstar
|
** Modified date: 2008-11-20
|
** Version:
|
** Descriptions: Delay functions
|
**
|
***************************************************************************/
|
//
|
#include "Delay.h"
|
|
void Delay_MS(unsigned int ms)
|
{
|
while(ms--)
|
_delay_ms(1);
|
}
|
//
|
|
/************************* END OF FILE (Delay.c)***************************/
|