summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Desbiens <[email protected]>2025-06-10 10:13:53 -0400
committerGitHub <[email protected]>2025-06-10 10:13:53 -0400
commit655f1179483f3536e555652c164b06b2a4c48bd6 (patch)
tree7018d2f2de565041ee5fe774e64fe6737ba1a493
parent2bbf1fa75c9b6758b06ef6f69492f2a2586943ac (diff)
Reversed change to _ux_system_slave_class_storage_vendor_id
The _ux_system_slave_class_storage_vendor_id in ux_device_class_storage_initialize.c had been changed to a value too large to fit given the constant's type. This commit reverts to a vendor_id with the appropriate length.
-rw-r--r--common/usbx_device_classes/src/ux_device_class_storage_initialize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/usbx_device_classes/src/ux_device_class_storage_initialize.c b/common/usbx_device_classes/src/ux_device_class_storage_initialize.c
index 7ad4a00..c6f393e 100644
--- a/common/usbx_device_classes/src/ux_device_class_storage_initialize.c
+++ b/common/usbx_device_classes/src/ux_device_class_storage_initialize.c
@@ -30,7 +30,7 @@
/* Define the Slave Storage Class Inquiry data : DO NOT CHANGE THE LENGTH OF THESE ITEMS */
-UCHAR _ux_system_slave_class_storage_vendor_id[] = "Eclipse ThreadX";
+UCHAR _ux_system_slave_class_storage_vendor_id[] = "Eclipse ";
UCHAR _ux_system_slave_class_storage_product_id[] = "USBX storage dev";
UCHAR _ux_system_slave_class_storage_product_rev[] = "2000";
UCHAR _ux_system_slave_class_storage_product_serial[] = "12345678901234567890";