/******************************************************************************

   buzzer.h - Prototypes for Routines to sound the optional User Buzzer 
              using a PWM for the Lincoln 60
                      
                      by Micromint Support <support@micromint.com>    June-2011

*******************************************************************************/
#ifndef __buzzer_H__
#define __buzzer_H__

#include "lpc17xx_pinsel.h"
#include "lpc17xx_pwm.h"
#include "lpc17xx_clkpwr.h"
#include "lpc17xx_timer.h"

#include "lincoln60_defines.h"

/*******************************************************************************

 Prototypes

*******************************************************************************/
void Sound_Buzzer_PWM(uint32_t uint32_tFrequency);
void Stop_Buzzer_PWM(void);
void Sound_Buzzer_Timer(uint32_t uint32_tFrequency);
void Stop_Buzzer_Timer(void);
#endif /* __buzzer_H__ */
