3 Copyright (C) Dean Camera, 2009.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
31 #include "ConfigDescriptor.h"
33 #if defined(USB_CAN_BE_HOST)
34 uint8_t USB_GetDeviceConfigDescriptor(uint16_t* const ConfigSizePtr
, void* BufferPtr
)
38 USB_HostRequest
= (USB_Host_Request_Header_t
)
40 bmRequestType
: (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
),
41 bRequest
: REQ_GetDescriptor
,
42 wValue
: (DTYPE_Configuration
<< 8),
44 wLength
: sizeof(USB_Descriptor_Configuration_Header_t
),
47 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
49 if (BufferPtr
== NULL
)
51 uint8_t ConfigHeader
[sizeof(USB_Descriptor_Configuration_Header_t
)];
53 ErrorCode
= USB_Host_SendControlRequest(ConfigHeader
);
55 #if defined(USE_NONSTANDARD_DESCRIPTOR_NAMES)
56 *ConfigSizePtr
= DESCRIPTOR_CAST(ConfigHeader
, USB_Descriptor_Configuration_Header_t
).TotalConfigurationSize
;
58 *ConfigSizePtr
= DESCRIPTOR_CAST(ConfigHeader
, USB_Descriptor_Configuration_Header_t
).wTotalLength
;
63 USB_HostRequest
.wLength
= *ConfigSizePtr
;
65 ErrorCode
= USB_Host_SendControlRequest(BufferPtr
);
72 void USB_GetNextDescriptorOfType(uint16_t* const BytesRem
,
73 uint8_t** const CurrConfigLoc
,
78 USB_GetNextDescriptor(BytesRem
, CurrConfigLoc
);
80 if (DESCRIPTOR_TYPE(*CurrConfigLoc
) == Type
)
85 void USB_GetNextDescriptorOfTypeBefore(uint16_t* const BytesRem
,
86 uint8_t** const CurrConfigLoc
,
88 const uint8_t BeforeType
)
92 USB_GetNextDescriptor(BytesRem
, CurrConfigLoc
);
94 if (DESCRIPTOR_TYPE(*CurrConfigLoc
) == Type
)
98 else if (DESCRIPTOR_TYPE(*CurrConfigLoc
) == BeforeType
)
106 void USB_GetNextDescriptorOfTypeAfter(uint16_t* const BytesRem
,
107 uint8_t** const CurrConfigLoc
,
109 const uint8_t AfterType
)
111 USB_GetNextDescriptorOfType(BytesRem
, CurrConfigLoc
, AfterType
);
114 USB_GetNextDescriptorOfType(BytesRem
, CurrConfigLoc
, Type
);
117 uint8_t USB_GetNextDescriptorComp_P(uint16_t* BytesRem
, uint8_t** CurrConfigLoc
, ComparatorPtr_t ComparatorRoutine
)
123 uint8_t* PrevDescLoc
= *CurrConfigLoc
;
124 uint16_t PrevBytesRem
= *BytesRem
;
126 USB_GetNextDescriptor(BytesRem
, CurrConfigLoc
);
128 if ((ErrorCode
= ComparatorRoutine(*CurrConfigLoc
)) != Descriptor_Search_NotFound
)
130 if (ErrorCode
== Descriptor_Search_Fail
)
132 *CurrConfigLoc
= PrevDescLoc
;
133 *BytesRem
= PrevBytesRem
;
140 return Descriptor_Search_Comp_EndOfDescriptor
;