diff --git a/README.md b/README.md index 967bd8a..716c9ed 100644 --- a/README.md +++ b/README.md @@ -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/ // -// Example: -// 0x0951 0x16D5 VENDORID_STR: Kingston PRODUCTID_STR: DataTraveler -// -#define USB_VENDORID 0x0951 -#define USB_PRODUCTID 0x16D5 -#define USB_DESCRIPTOR "DataTraveler" -#define USB_MANUF "Kingston" +#define USB_VENDORID 0xCAFE +#define USB_PRODUCTID 0x1337 +#define USB_DESCRIPTOR "DataStore" +#define USB_MANUF "USB Acme" #define USB_SERIAL "123456789A" -#define USB_VENDORID_STR "Kingston" // Up to 8 chars -#define USB_PRODUCTID_STR "DataTraveler" // Up to 16 chars +#define USB_VENDORID_STR "Acme" // Up to 8 chars +#define USB_PRODUCTID_STR "DataStore" // Up to 16 chars #define USB_VERSION_STR "1.0" // Up to 4 chars ``` diff --git a/src/usb_config.h b/src/usb_config.h index dd226a8..1199ca2 100644 --- a/src/usb_config.h +++ b/src/usb_config.h @@ -2,7 +2,7 @@ #define USB_CONFIG_H // Project version -#define VERSION "USBvalve - 1.0.0" +#define VERSION "USBvalve - 1.0.1" // USB anti-detection settings // @@ -12,16 +12,13 @@ // // You can see here for inspiration: https://the-sz.com/products/usbid/ // -// Example: -// 0x0951 0x16D5 VENDORID_STR: Kingston PRODUCTID_STR: DataTraveler -// -#define USB_VENDORID 0x0951 -#define USB_PRODUCTID 0x16D5 -#define USB_DESCRIPTOR "DataTraveler" -#define USB_MANUF "Kingston" +#define USB_VENDORID 0xCAFE +#define USB_PRODUCTID 0x1337 +#define USB_DESCRIPTOR "DataStore" +#define USB_MANUF "USB Acme" #define USB_SERIAL "123456789A" -#define USB_VENDORID_STR "Kingston" // Up to 8 chars -#define USB_PRODUCTID_STR "DataTraveler" // Up to 16 chars +#define USB_VENDORID_STR "Acme" // Up to 8 chars +#define USB_PRODUCTID_STR "DataStore" // Up to 16 chars #define USB_VERSION_STR "1.0" // Up to 4 chars // Disk configuration