/************************** Copyright (c) **********************************
|
** FUZHOU FUGUANG ELECTRONICS Co.,LTD.
|
** ¸£Öݸ£¹âµç×ÓÓÐÏÞ¹«Ë¾
|
** http://www.fuguang.com
|
**
|
**-------------- File Info -------------------------------------------------
|
** File name: Delay.h
|
** 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
|
**
|
***************************************************************************/
|
//
|
#ifndef Delay_H
|
#define Delay_H
|
|
#include <avr/io.h>
|
#include <util/delay.h>
|
|
void Delay_MS(unsigned int ms);
|
|
#endif
|
//
|