Skip to content

Commit 9eab296

Browse files
authored
Merge pull request #194 from Christer-Ekholm/Pima_thread_parids
Fix copy paste errors in Pima threads
2 parents dbef39c + c49990d commit 9eab296

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/usbx_device_classes/src/ux_device_class_pima_interrupt_thread.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ UCHAR *buffer;
169169
_ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_1, pima_event.ux_device_class_pima_event_parameter_1);
170170

171171
/* Put the value of parameter 2. */
172-
_ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_2, pima_event.ux_device_class_pima_event_parameter_3);
172+
_ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_2, pima_event.ux_device_class_pima_event_parameter_2);
173173

174174
/* Put the value of parameter 3. */
175-
_ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_2, pima_event.ux_device_class_pima_event_parameter_3);
175+
_ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_3, pima_event.ux_device_class_pima_event_parameter_3);
176176

177177
/* Send the request to the device controller. */
178178
status = _ux_device_stack_transfer_request(transfer_request_in, UX_DEVICE_CLASS_PIMA_AEI_MAX_LENGTH, UX_DEVICE_CLASS_PIMA_AEI_MAX_LENGTH);

0 commit comments

Comments
 (0)