Skip to content

Commit 655f117

Browse files
authored
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.
1 parent 2bbf1fa commit 655f117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/usbx_device_classes/src/ux_device_class_storage_initialize.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
/* Define the Slave Storage Class Inquiry data : DO NOT CHANGE THE LENGTH OF THESE ITEMS */
3232

33-
UCHAR _ux_system_slave_class_storage_vendor_id[] = "Eclipse ThreadX";
33+
UCHAR _ux_system_slave_class_storage_vendor_id[] = "Eclipse ";
3434
UCHAR _ux_system_slave_class_storage_product_id[] = "USBX storage dev";
3535
UCHAR _ux_system_slave_class_storage_product_rev[] = "2000";
3636
UCHAR _ux_system_slave_class_storage_product_serial[] = "12345678901234567890";

0 commit comments

Comments
 (0)