Ensure all USB device class drivers have the same three main functions as their interface for consistency.

This commit is contained in:
Dean Camera 2009-06-04 03:03:48 +00:00
parent a67bd74e3e
commit 4897ef8972
6 changed files with 25 additions and 0 deletions

View file

@ -80,6 +80,11 @@ bool USB_Audio_ConfigureEndpoints(USB_ClassInfo_Audio_t* AudioInterfaceInfo)
return true;
}
void USB_Audio_USBTask(USB_ClassInfo_Audio_t* AudioInterfaceInfo)
{
}
int8_t USB_Audio_ReadSample8(void)
{
int8_t Sample;