Aded hostactive.c and audiostream.c. These are now weak so can be over-ridden by app

This commit is contained in:
Ross Owen
2013-05-15 12:52:41 +01:00
parent 1c1ce5be1e
commit ce2bcacb16
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/* Deafult implementations of AudioStreamStop() and AudioStreamStart(). Both can be over-ridden */
void UserAudioStreamStop() __attribute__ ((weak));
void UserAudioStreamStop()
{
return;
}
void UserAudioStreamStart() __attribute__ ((weak));
void UserAudioStreamStart()
{
return;
}