Version 3.2 strings and PID

This commit is contained in:
Raphael Assenat 2016-05-22 17:33:26 -04:00
parent a333980812
commit 3ec1c0b711
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
OBJS=main.o usb.o usbpad.o mappings.o gcn64_protocol.o n64.o gamecube.o usart1.o bootloader.o eeprom.o config.o hiddata.o usbstrings.o intervaltimer.o version.o gcn64txrx.o gamepads.o OBJS=main.o usb.o usbpad.o mappings.o gcn64_protocol.o n64.o gamecube.o usart1.o bootloader.o eeprom.o config.o hiddata.o usbstrings.o intervaltimer.o version.o gcn64txrx.o gamepads.o
VERSIONSTR=\"3.1.1\" VERSIONSTR=\"3.2.0\"

2
main.c
View File

@ -135,7 +135,7 @@ const struct usb_device_descriptor device_descriptor PROGMEM = {
.bDeviceProtocol = 0, .bDeviceProtocol = 0,
.bMaxPacketSize = 64, .bMaxPacketSize = 64,
.idVendor = 0x289B, .idVendor = 0x289B,
.idProduct = 0x0017, .idProduct = 0x001D,
.bcdDevice = 0x0300, // 1.0.0 .bcdDevice = 0x0300, // 1.0.0
.bNumConfigurations = 1, .bNumConfigurations = 1,
.iManufacturer = 1, .iManufacturer = 1,

View File

@ -19,7 +19,7 @@
const wchar_t *g_usb_strings[] = { const wchar_t *g_usb_strings[] = {
[0] = L"raphnet technologies", // 1 : Vendor [0] = L"raphnet technologies", // 1 : Vendor
[1] = L"GC/N64 to USB v3.0", // 2: Product [1] = L"GC/N64 to USB v3.2", // 2: Product
[2] = L"123456", // 3 : Serial [2] = L"123456", // 3 : Serial
}; };