forked from mfulz_github/qmk_firmware
Fixed incorrect call to the user callback CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep).
This commit is contained in:
parent
77adb2ba52
commit
f87aec2264
|
@ -25,6 +25,7 @@
|
||||||
* - Core:
|
* - Core:
|
||||||
* - Fixed possible enumeration error if the user application selects a pipe other than the default Control pipe between the Powered and Default states of
|
* - Fixed possible enumeration error if the user application selects a pipe other than the default Control pipe between the Powered and Default states of
|
||||||
* the host state machine
|
* the host state machine
|
||||||
|
* - Fixed incorrect call to the user callback CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep)
|
||||||
* - Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid)
|
* - Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid)
|
||||||
* - Library Applications:
|
* - Library Applications:
|
||||||
* - None
|
* - None
|
||||||
|
|
|
@ -125,7 +125,7 @@ void Audio_Device_ProcessControlRequest(USB_ClassInfo_Audio_Device_t* const Audi
|
||||||
Endpoint_ClearIN();
|
Endpoint_ClearIN();
|
||||||
|
|
||||||
CALLBACK_Audio_Device_GetSetInterfaceProperty(AudioInterfaceInfo, Property, Entity,
|
CALLBACK_Audio_Device_GetSetInterfaceProperty(AudioInterfaceInfo, Property, Entity,
|
||||||
Parameter, NULL, NULL);
|
Parameter, &ValueLength, Value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue