/************************** Copyright (c) **********************************
|
** FUZHOU FUGUANG ELECTRONICS Co.,LTD.
|
** ¸£Öݸ£¹âµç×ÓÓÐÏÞ¹«Ë¾
|
** http://www.fuguang.com
|
**
|
**-------------- File Info -------------------------------------------------
|
** File name: M64PWM_Driver.h
|
** Last modified Date: 2008-11-16
|
** Last Version: 1.0
|
** Descriptions: M64PWM Drivers lib
|
**
|
**--------------------------------------------------------------------------
|
** 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: M64PWM Drivers lib
|
**
|
***************************************************************************/
|
//
|
#ifndef M64PWM_Dri_H
|
#define M64PWM_Dri_H
|
|
#include<avr/io.h>
|
#include<util/delay.h>
|
|
void InitIO_M64PWM(void);
|
void Config_M64PWM(void);
|
void Start_M64PWM1(void);
|
void Start_M64PWM2(void);
|
void Start_M64PWM3(void);
|
|
void Stop_M64PWM(void);
|
|
void SetM64PWM1Value(const unsigned int value);
|
void SetM64PWM2Value(const unsigned int value);
|
void SetM64PWM3Value(const unsigned int value);
|
unsigned int GetM64PWM1Value(void);
|
unsigned int GetM64PWM2Value(void);
|
unsigned int GetM64PWM3Value(void);
|
#endif
|
//
|