aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-06-16 06:49:08 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-06-16 06:49:08 +0000
commitd8fe01f19a48b960f5f82735b38ab798d07f2891 (patch)
tree70f263f3bae17a97c0e3b776a81ec1178d9dbbd7 /Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c
parent57eedebd191c91ce125238a8a2cb1482186d6164 (diff)
downloadlufa-d8fe01f19a48b960f5f82735b38ab798d07f2891.tar.gz
lufa-d8fe01f19a48b960f5f82735b38ab798d07f2891.tar.bz2
lufa-d8fe01f19a48b960f5f82735b38ab798d07f2891.zip
Rename new Audio class driver functions, callbacks and events to ensure that they contain the USB mode (Device or Host) in the function names.
Diffstat (limited to 'Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c')
-rw-r--r--Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c b/Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c
index 78da1f17a..0262f597f 100644
--- a/Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c
+++ b/Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c
@@ -106,9 +106,9 @@ int main(void)
}
USB_Audio_SampleFreq_t SampleRate = AUDIO_SAMPLE_FREQ(48000);
- if (Audio_GetSetEndpointProperty(&Speaker_Audio_Interface, Speaker_Audio_Interface.Config.DataOUTPipeNumber,
- AUDIO_REQ_SetCurrent, AUDIO_EPCONTROL_SamplingFreq,
- sizeof(SampleRate), &SampleRate) != HOST_SENDCONTROL_Successful)
+ if (Audio_Host_GetSetEndpointProperty(&Speaker_Audio_Interface, Speaker_Audio_Interface.Config.DataOUTPipeNumber,
+ AUDIO_REQ_SetCurrent, AUDIO_EPCONTROL_SamplingFreq,
+ sizeof(SampleRate), &SampleRate) != HOST_SENDCONTROL_Successful)
{
puts_P(PSTR("Error Setting Audio Sampling Frequency.\r\n"));
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);