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,7 @@
void UserHostActive(int active) __attribute__ ((weak));
void UserHostActive(int active)
{
return;
}