00001 /* This file has been prepared for Doxygen automatic documentation generation.*/ 00029 #ifndef PWM_H 00030 #define PWM_H 00031 00032 //****************************************************************************** 00033 // Constants for PWM 00034 //****************************************************************************** 00036 #define PWM_OFFSET 12 00037 00039 #define PWM_MAX 255 00040 00041 00042 //****************************************************************************** 00043 // Function prototypes 00044 //****************************************************************************** 00045 void PWM_Start(void); 00046 void PWM_Stop(void); 00047 unsigned char PWM_IncrementDutyCycle(void); 00048 unsigned char PWM_DecrementDutyCycle(void); 00049 00050 #endif // PWM_H 00051