summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Desbiens <[email protected]>2025-05-27 09:17:40 -0400
committerGitHub <[email protected]>2025-05-27 09:17:40 -0400
commit9eab296f5790f2fe329b35b5f8891a62e1626f43 (patch)
tree0f90a16319143a7c4b8482c98843c22536263f63
parentdbef39c11bde213d01cbabc6b661a7a252fb6e22 (diff)
parentc49990d3642cd741ebe9ed15a6f17cb07b746a22 (diff)
Merge pull request #194 from Christer-Ekholm/Pima_thread_parids
Fix copy paste errors in Pima threads
-rw-r--r--common/usbx_device_classes/src/ux_device_class_pima_interrupt_thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/usbx_device_classes/src/ux_device_class_pima_interrupt_thread.c b/common/usbx_device_classes/src/ux_device_class_pima_interrupt_thread.c
index 08db3f2..290bea1 100644
--- a/common/usbx_device_classes/src/ux_device_class_pima_interrupt_thread.c
+++ b/common/usbx_device_classes/src/ux_device_class_pima_interrupt_thread.c
@@ -169,10 +169,10 @@ UCHAR *buffer;
_ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_1, pima_event.ux_device_class_pima_event_parameter_1);
/* Put the value of parameter 2. */
- _ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_2, pima_event.ux_device_class_pima_event_parameter_3);
+ _ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_2, pima_event.ux_device_class_pima_event_parameter_2);
/* Put the value of parameter 3. */
- _ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_2, pima_event.ux_device_class_pima_event_parameter_3);
+ _ux_utility_long_put(buffer + UX_DEVICE_CLASS_PIMA_AEI_PARAMETER_3, pima_event.ux_device_class_pima_event_parameter_3);
/* Send the request to the device controller. */
status = _ux_device_stack_transfer_request(transfer_request_in, UX_DEVICE_CLASS_PIMA_AEI_MAX_LENGTH, UX_DEVICE_CLASS_PIMA_AEI_MAX_LENGTH);