Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define UX_SOURCE_CODE
#include "ux_api.h"
#include "ux_device_class_hid.h"
#include "ux_device_stack.h"
...
...
_ux_device_class_hid_descriptor_send(UX_SLAVE_CLASS_HID *, ULONG, ULONG, ULONG)
Files
loading...
CodeScopeSTM32 Libraries and Samplesusbxcommon/usbx_device_classes/src/ux_device_class_hid_descriptor_send.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** USBX Component */ /** */ /** Device HID Class */ /** */... /**************************************************************************/ /**************************************************************************/ #define UX_SOURCE_CODE /* Include necessary system files. */ #include "ux_api.h" #include "ux_device_class_hid.h" #include "ux_device_stack.h" ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _ux_device_class_hid_descriptor_send PORTABLE C */ /* 6.1.8 */ /* AUTHOR */ /* */ /* Chaoqiong Xiao, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function sends back the class descriptor required by the host. */ /* */ /* INPUT */ /* */ /* descriptor_type Descriptor type */ /* descriptor_index Index of descriptor */ /* host_length Length requested by host */ /* */ /* OUTPUT */ /* */ /* Completion Status */ /* */ /* CALLS */ /* */ /* (ux_slave_dcd_function) DCD dispatch function */ /* _ux_device_stack_transfer_request Process transfer request */ /* _ux_utility_memory_copy Memory copy */ /* */ /* CALLED BY */ /* */ /* Application */ /* Device Stack */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Chaoqiong Xiao Initial Version 6.0 */ /* 09-30-2020 Chaoqiong Xiao Modified comment(s), */ /* verified memset and memcpy */ /* cases, */ /* resulting in version 6.1 */ /* 08-02-2021 Chaoqiong Xiao Modified comment(s), */ /* fixed HID descriptor search,*/ /* resulting in version 6.1.8 */ /* */... /**************************************************************************/ UINT _ux_device_class_hid_descriptor_send(UX_SLAVE_CLASS_HID *hid, ULONG descriptor_type, ULONG request_index, ULONG host_length) { UX_SLAVE_DCD *dcd; UX_SLAVE_DEVICE *device; UX_SLAVE_TRANSFER *transfer_request; UX_SLAVE_ENDPOINT *endpoint; UCHAR * device_framework; UCHAR * device_framework_end; ULONG descriptor_length; UINT status = UX_ERROR; ULONG length; UCHAR interface_number = 0xFF; UX_PARAMETER_NOT_USED(request_index); /* If trace is enabled, insert this event into the trace buffer. */ UX_TRACE_IN_LINE_INSERT(UX_TRACE_DEVICE_CLASS_HID_DESCRIPTOR_SEND, hid, descriptor_type, request_index, 0, UX_TRACE_DEVICE_CLASS_EVENTS, 0, 0) /* Get the pointer to the DCD. */ dcd = &_ux_system_slave -> ux_system_slave_dcd; /* Get the pointer to the device. */ device = &_ux_system_slave -> ux_system_slave_device; /* Get the control endpoint associated with the device. */ endpoint = &device -> ux_slave_device_control_endpoint; /* Get the pointer to the transfer request associated with the endpoint. */ transfer_request = &endpoint -> ux_slave_endpoint_transfer_request; /* Set the direction to OUT. */ transfer_request -> ux_slave_transfer_request_phase = UX_TRANSFER_PHASE_DATA_OUT; /* Shift the descriptor type in the low byte field. */ descriptor_type = (UCHAR) ((descriptor_type >> 8) & 0xff); /* What type of descriptor do we need to return? */ switch (descriptor_type) { case UX_DEVICE_CLASS_HID_DESCRIPTOR_HID: /* We should have a HID descriptor as part of the config descriptor. */ device_framework = _ux_system_slave -> ux_system_slave_device_framework; device_framework_end = device_framework + _ux_system_slave -> ux_system_slave_device_framework_length; /* Parse the device framework and locate the HID descriptor. There is only one HID descriptor. *//* ... */ while (device_framework < device_framework_end) { /* Get the type of the current descriptor. */ descriptor_type = *(device_framework + 1); /* And its length. */ descriptor_length = (ULONG) *device_framework; /* Save interface number for later check. */ if (descriptor_type == UX_INTERFACE_DESCRIPTOR_ITEM) interface_number = *(device_framework + 2); /* Check if this is a HID report descriptor. */ if ((descriptor_type == UX_DEVICE_CLASS_HID_DESCRIPTOR_HID) && (interface_number == (UCHAR)request_index)) { /* Ensure the host does not demand a length beyond our descriptor (Windows does that) and do not return more than what is allowed. *//* ... */ if (descriptor_length < host_length) length = descriptor_length; else length = host_length; /* Check buffer length, since descriptor length may exceed buffer... */ if (length > UX_SLAVE_REQUEST_CONTROL_MAX_LENGTH) { /* Error trap. */ _ux_system_error_handler(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_CLASS, UX_MEMORY_INSUFFICIENT); /* If trace is enabled, insert this event into the trace buffer. */ UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_MEMORY_INSUFFICIENT, hid, 0, 0, UX_TRACE_ERRORS, 0, 0) /* Stall the endpoint. */ status = dcd -> ux_slave_dcd_function(dcd, UX_DCD_STALL_ENDPOINT, endpoint); break; }if (length > UX_SLAVE_REQUEST_CONTROL_MAX_LENGTH) { ... } /* Copy the device descriptor into the transfer request memory. */ _ux_utility_memory_copy(transfer_request -> ux_slave_transfer_request_data_pointer, device_framework, length); /* Use case of memcpy is verified. */ /* We can return the configuration descriptor. */ status = _ux_device_stack_transfer_request(transfer_request, length, host_length); break; }if ((descriptor_type == UX_DEVICE_CLASS_HID_DESCRIPTOR_HID) && (interface_number == (UCHAR)request_index)) { ... } /* Point to the next descriptor. */ device_framework += descriptor_length; }while (device_framework < device_framework_end) { ... } /* Stall the endpoint if not found or corrupt. */ if (device_framework >= device_framework_end) status = dcd -> ux_slave_dcd_function(dcd, UX_DCD_STALL_ENDPOINT, endpoint); break; case UX_DEVICE_CLASS_HID_DESCRIPTOR_HID: case UX_DEVICE_CLASS_HID_DESCRIPTOR_REPORT: /* Get the length of entire configuration descriptor. */ descriptor_length = hid -> ux_device_class_hid_report_length; /* Ensure the host does not demand a length beyond our descriptor (Windows does that) and do not return more than what is allowed. *//* ... */ if (descriptor_length < host_length) length = descriptor_length; else length = host_length; /* Check buffer length, since total descriptors length may exceed buffer... */ if (length > UX_SLAVE_REQUEST_CONTROL_MAX_LENGTH) { /* Error trap. */ _ux_system_error_handler(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_CLASS, UX_MEMORY_INSUFFICIENT); /* If trace is enabled, insert this event into the trace buffer. */ UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_MEMORY_INSUFFICIENT, hid, 0, 0, UX_TRACE_ERRORS, 0, 0) /* Stall the endpoint. */ status = dcd -> ux_slave_dcd_function(dcd, UX_DCD_STALL_ENDPOINT, endpoint); break; }if (length > UX_SLAVE_REQUEST_CONTROL_MAX_LENGTH) { ... } /* Copy the device descriptor into the transfer request memory. */ _ux_utility_memory_copy(transfer_request -> ux_slave_transfer_request_data_pointer, hid -> ux_device_class_hid_report_address, length); /* Use case of memcpy is verified. */ /* We can return the report descriptor. */ status = _ux_device_stack_transfer_request(transfer_request, length, host_length); break; case UX_DEVICE_CLASS_HID_DESCRIPTOR_REPORT: case UX_DEVICE_CLASS_HID_DESCRIPTOR_PHYSICAL: /* Not treated for now. Fall through and Stall endpoint. */ case UX_DEVICE_CLASS_HID_DESCRIPTOR_PHYSICAL: default: /* Stall the endpoint. */ dcd -> ux_slave_dcd_function(dcd, UX_DCD_STALL_ENDPOINT, endpoint); return(UX_ERROR);default }switch (descriptor_type) { ... } /* Return the status to the caller. */ return(status); }{ ... }