0% found this document useful (0 votes)
109 views1 page

Audio Hfile

This document is the header file for an Audio module. It contains function declarations to initialize audio service with a priority, run the main audio state machine loop, and post events to the audio service. The header guards the file from being included more than once.

Uploaded by

api-340729449
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
109 views1 page

Audio Hfile

This document is the header file for an Audio module. It contains function declarations to initialize audio service with a priority, run the main audio state machine loop, and post events to the audio service. The header guards the file from being included more than once.

Uploaded by

api-340729449
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 1

/****************************************************************************

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

You might also like