projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Get rid of the redundant ATTR_NEVER_INLINE macro which translated to the same as...
[pub/USBasp.git]
/
Demos
/
Device
/
ClassDriver
/
AudioOutput
/
AudioOutput.c
diff --git
a/Demos/Device/ClassDriver/AudioOutput/AudioOutput.c
b/Demos/Device/ClassDriver/AudioOutput/AudioOutput.c
index
92d6c53
..
432f5e0
100644
(file)
--- a/
Demos/Device/ClassDriver/AudioOutput/AudioOutput.c
+++ b/
Demos/Device/ClassDriver/AudioOutput/AudioOutput.c
@@
-44,8
+44,8
@@
USB_ClassInfo_Audio_Device_t Speaker_Audio_Interface =
{
.Config =
{
{
.Config =
{
- .ControlInterfaceNumber =
0
,
- .StreamingInterfaceNumber =
1
,
+ .ControlInterfaceNumber =
INTERFACE_ID_AudioControl
,
+ .StreamingInterfaceNumber =
INTERFACE_ID_AudioStream
,
.DataOUTEndpoint =
{
.Address = AUDIO_STREAM_EPADDR,
.DataOUTEndpoint =
{
.Address = AUDIO_STREAM_EPADDR,
@@
-79,12
+79,14
@@
int main(void)
/** Configures the board hardware and chip peripherals for the demo's functionality. */
void SetupHardware(void)
{
/** Configures the board hardware and chip peripherals for the demo's functionality. */
void SetupHardware(void)
{
+#if (ARCH == ARCH_AVR8)
/* Disable watchdog if enabled by bootloader/fuses */
MCUSR &= ~(1 << WDRF);
wdt_disable();
/* Disable clock division */
clock_prescale_set(clock_div_1);
/* Disable watchdog if enabled by bootloader/fuses */
MCUSR &= ~(1 << WDRF);
wdt_disable();
/* Disable clock division */
clock_prescale_set(clock_div_1);
+#endif
/* Hardware Initialization */
LEDs_Init();
/* Hardware Initialization */
LEDs_Init();
@@
-227,7
+229,7
@@
void EVENT_USB_Device_ControlRequest(void)
* \param[in,out] Data Pointer to a location where the parameter data is stored for SET operations, or where
* the retrieved data is to be stored for GET operations.
*
* \param[in,out] Data Pointer to a location where the parameter data is stored for SET operations, or where
* the retrieved data is to be stored for GET operations.
*
- * \return Boolean
true if the property get/set was successful,
false otherwise
+ * \return Boolean
\c true if the property get/set was successful, \c
false otherwise
*/
bool CALLBACK_Audio_Device_GetSetEndpointProperty(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
const uint8_t EndpointProperty,
*/
bool CALLBACK_Audio_Device_GetSetEndpointProperty(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
const uint8_t EndpointProperty,
@@
-302,7
+304,7
@@
bool CALLBACK_Audio_Device_GetSetInterfaceProperty(USB_ClassInfo_Audio_Device_t*
const uint8_t EntityAddress,
const uint16_t Parameter,
uint16_t* const DataLength,
const uint8_t EntityAddress,
const uint16_t Parameter,
uint16_t* const DataLength,
- uint8_t* Data)
+ uint8_t* Data)
{
/* No audio interface entities in the device descriptor, thus no properties to get or set. */
return false;
{
/* No audio interface entities in the device descriptor, thus no properties to get or set. */
return false;