forked from mirror/qmk_firmware
Fix makefiles -- the auto-addition of -D switches to each LUFA compile time option was faulty, due to GNUMake becomming confused by the spaces in the USE_STATIC_OPTIONS lines. Make user add in the switches explicitly instead.
This commit is contained in:
@@ -302,7 +302,7 @@ uint8_t USB_Host_SetDeviceConfiguration(uint8_t ConfigNumber)
|
||||
return USB_Host_SendControlRequest(NULL);
|
||||
}
|
||||
|
||||
uint8_t USB_Host_GetDeviceDescriptor(USB_Descriptor_Device_t* DeviceDescriptorPtr)
|
||||
uint8_t USB_Host_GetDeviceDescriptor(void* DeviceDescriptorPtr)
|
||||
{
|
||||
USB_ControlRequest = (USB_Request_Header_t)
|
||||
{
|
||||
|
||||
@@ -199,7 +199,7 @@
|
||||
*
|
||||
* \return A value from the \ref USB_Host_SendControlErrorCodes_t enum to indicate the result.
|
||||
*/
|
||||
uint8_t USB_Host_GetDeviceDescriptor(USB_Descriptor_Device_t* DeviceDescriptorPtr);
|
||||
uint8_t USB_Host_GetDeviceDescriptor(void* DeviceDescriptorPtr);
|
||||
|
||||
/** Clears a stall condition on the given pipe, via a ClearFeature request to the attached device.
|
||||
*
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
* - Make new host class drivers
|
||||
* - Document new host class drivers
|
||||
* - Convert Host mode demos to class drivers
|
||||
* - Re-enable Host mode Class driver builds after completion
|
||||
* - Add standardized descriptor names to class driver structures, controlled by USE_NONSTANDARD_DESCRIPTOR_NAMES
|
||||
* - Add multiple-report HID demo to the library
|
||||
* - Add dual role Mouse Host/Keyboard Device demo to the library
|
||||
|
||||
Reference in New Issue
Block a user