From 3ec1c0b711e741bd3bd5a9cb890de6f79c8fde36 Mon Sep 17 00:00:00 2001 From: Raphael Assenat Date: Sun, 22 May 2016 17:33:26 -0400 Subject: [PATCH] Version 3.2 strings and PID --- Makefile.inc | 2 +- main.c | 2 +- usbstrings.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.inc b/Makefile.inc index fe69085..8fe4604 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -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 -VERSIONSTR=\"3.1.1\" +VERSIONSTR=\"3.2.0\" diff --git a/main.c b/main.c index 5e7adf7..ec1dd33 100644 --- a/main.c +++ b/main.c @@ -135,7 +135,7 @@ const struct usb_device_descriptor device_descriptor PROGMEM = { .bDeviceProtocol = 0, .bMaxPacketSize = 64, .idVendor = 0x289B, - .idProduct = 0x0017, + .idProduct = 0x001D, .bcdDevice = 0x0300, // 1.0.0 .bNumConfigurations = 1, .iManufacturer = 1, diff --git a/usbstrings.c b/usbstrings.c index a2dfc97..73c07cf 100644 --- a/usbstrings.c +++ b/usbstrings.c @@ -19,7 +19,7 @@ const wchar_t *g_usb_strings[] = { [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 };