minor mods

This commit is contained in:
cecio
2026-08-19 00:17:35 +02:00
parent 5836ac7208
commit ab904e5ecd
2 changed files with 13 additions and 19 deletions
+6 -9
View File
@@ -199,16 +199,13 @@ I grouped most of the variables you may want to modify in this section of `usb_c
// //
// You can see here for inspiration: https://the-sz.com/products/usbid/ // You can see here for inspiration: https://the-sz.com/products/usbid/
// //
// Example: #define USB_VENDORID 0xCAFE
// 0x0951 0x16D5 VENDORID_STR: Kingston PRODUCTID_STR: DataTraveler #define USB_PRODUCTID 0x1337
// #define USB_DESCRIPTOR "DataStore"
#define USB_VENDORID 0x0951 #define USB_MANUF "USB Acme"
#define USB_PRODUCTID 0x16D5
#define USB_DESCRIPTOR "DataTraveler"
#define USB_MANUF "Kingston"
#define USB_SERIAL "123456789A" #define USB_SERIAL "123456789A"
#define USB_VENDORID_STR "Kingston" // Up to 8 chars #define USB_VENDORID_STR "Acme" // Up to 8 chars
#define USB_PRODUCTID_STR "DataTraveler" // Up to 16 chars #define USB_PRODUCTID_STR "DataStore" // Up to 16 chars
#define USB_VERSION_STR "1.0" // Up to 4 chars #define USB_VERSION_STR "1.0" // Up to 4 chars
``` ```
+7 -10
View File
@@ -2,7 +2,7 @@
#define USB_CONFIG_H #define USB_CONFIG_H
// Project version // Project version
#define VERSION "USBvalve - 1.0.0" #define VERSION "USBvalve - 1.0.1"
// USB anti-detection settings // USB anti-detection settings
// //
@@ -12,16 +12,13 @@
// //
// You can see here for inspiration: https://the-sz.com/products/usbid/ // You can see here for inspiration: https://the-sz.com/products/usbid/
// //
// Example: #define USB_VENDORID 0xCAFE
// 0x0951 0x16D5 VENDORID_STR: Kingston PRODUCTID_STR: DataTraveler #define USB_PRODUCTID 0x1337
// #define USB_DESCRIPTOR "DataStore"
#define USB_VENDORID 0x0951 #define USB_MANUF "USB Acme"
#define USB_PRODUCTID 0x16D5
#define USB_DESCRIPTOR "DataTraveler"
#define USB_MANUF "Kingston"
#define USB_SERIAL "123456789A" #define USB_SERIAL "123456789A"
#define USB_VENDORID_STR "Kingston" // Up to 8 chars #define USB_VENDORID_STR "Acme" // Up to 8 chars
#define USB_PRODUCTID_STR "DataTraveler" // Up to 16 chars #define USB_PRODUCTID_STR "DataStore" // Up to 16 chars
#define USB_VERSION_STR "1.0" // Up to 4 chars #define USB_VERSION_STR "1.0" // Up to 4 chars
// Disk configuration // Disk configuration