/****************************************************************************
Module
Audio.h
Description
header file for the Audio module
Notes
History
When
Who
What/Why
-------------- ---------11/13/16 04:12 rmc
Created
*****************************************************************************/
#ifndef Audio
#define Audio
bool InitializeAudio(uint8_t Priority); // initializes the service (the
priority, I/O port, etc.)
//bool CheckMorseEvents(void); //don't think it needs an event checker
ES_Event RunAudio(ES_Event ThisEvent); //the main run state machine (loop)
bool PostAudioService( ES_Event ThisEvent ); //the service posting function
#endif //Audio