|
|
@ -51,7 +51,6 @@ int main(void)
|
|
|
|
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
USB_Audio_Task();
|
|
|
|
|
|
|
|
USB_USBTask();
|
|
|
|
USB_USBTask();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -80,6 +79,7 @@ void EVENT_USB_Device_Connect(void)
|
|
|
|
LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
|
|
|
|
LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
|
|
|
|
|
|
|
|
|
|
|
|
/* Sample reload timer initialization */
|
|
|
|
/* Sample reload timer initialization */
|
|
|
|
|
|
|
|
TIMSK0 = (1 << OCIE0A);
|
|
|
|
OCR0A = (F_CPU / 8 / AUDIO_SAMPLE_FREQUENCY) - 1;
|
|
|
|
OCR0A = (F_CPU / 8 / AUDIO_SAMPLE_FREQUENCY) - 1;
|
|
|
|
TCCR0A = (1 << WGM01); // CTC mode
|
|
|
|
TCCR0A = (1 << WGM01); // CTC mode
|
|
|
|
TCCR0B = (1 << CS01); // Fcpu/8 speed
|
|
|
|
TCCR0B = (1 << CS01); // Fcpu/8 speed
|
|
|
@ -171,28 +171,17 @@ void EVENT_USB_Device_UnhandledControlRequest(void)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Task to manage the Audio interface, reading in audio samples from the host, and outputting them to the speakers/LEDs as
|
|
|
|
/** ISR to handle the reloading of the PWM timer with the next sample. */
|
|
|
|
* desired.
|
|
|
|
ISR(TIMER0_COMPA_vect, ISR_BLOCK)
|
|
|
|
*/
|
|
|
|
|
|
|
|
void USB_Audio_Task(void)
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/* Device must be connected and configured for the task to run */
|
|
|
|
uint8_t PrevEndpoint = Endpoint_GetCurrentEndpoint();
|
|
|
|
if (USB_DeviceState != DEVICE_STATE_Configured)
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Check to see if the streaming interface is selected, if not the host is not receiving audio */
|
|
|
|
|
|
|
|
if (!(StreamingAudioInterfaceSelected))
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Select the audio stream endpoint */
|
|
|
|
/* Select the audio stream endpoint */
|
|
|
|
Endpoint_SelectEndpoint(AUDIO_STREAM_EPNUM);
|
|
|
|
Endpoint_SelectEndpoint(AUDIO_STREAM_EPNUM);
|
|
|
|
|
|
|
|
|
|
|
|
/* Check if the current endpoint can be read from (contains a packet) and that the next sample should be read */
|
|
|
|
/* Check if the current endpoint can be read from (contains a packet) and the host is sending data */
|
|
|
|
if (Endpoint_IsOUTReceived() && (TIFR0 & (1 << OCF0A)))
|
|
|
|
if (Endpoint_IsOUTReceived() && StreamingAudioInterfaceSelected)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/* Clear the sample reload timer */
|
|
|
|
|
|
|
|
TIFR0 |= (1 << OCF0A);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Retrieve the signed 16-bit left and right audio samples, convert to 8-bit */
|
|
|
|
/* Retrieve the signed 16-bit left and right audio samples, convert to 8-bit */
|
|
|
|
int8_t LeftSample_8Bit = ((int16_t)Endpoint_Read_Word_LE() >> 8);
|
|
|
|
int8_t LeftSample_8Bit = ((int16_t)Endpoint_Read_Word_LE() >> 8);
|
|
|
|
int8_t RightSample_8Bit = ((int16_t)Endpoint_Read_Word_LE() >> 8);
|
|
|
|
int8_t RightSample_8Bit = ((int16_t)Endpoint_Read_Word_LE() >> 8);
|
|
|
@ -233,5 +222,7 @@ void USB_Audio_Task(void)
|
|
|
|
|
|
|
|
|
|
|
|
LEDs_SetAllLEDs(LEDMask);
|
|
|
|
LEDs_SetAllLEDs(LEDMask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Endpoint_SelectEndpoint(PrevEndpoint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|