elgato-gchd icon indicating copy to clipboard operation
elgato-gchd copied to clipboard

support for hd60 s

Open marlon99rocks opened this issue 5 years ago • 6 comments

plz help

marlon99rocks avatar May 17 '19 23:05 marlon99rocks

See here: #15 - not going to happen anytime soon.

bloodywing avatar May 27 '19 06:05 bloodywing

also, my 60 hd s has a different product id:

Jan 15 16:00:40 incontrol kernel: usb 4-4: New USB device found, idVendor=0fd9, idProduct=005e, bcdDevice=1f.4f
Jan 15 16:00:40 incontrol kernel: usb 4-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 15 16:00:40 incontrol kernel: usb 4-4: Product: Game Capture HD60 S
Jan 15 16:00:40 incontrol kernel: usb 4-4: Manufacturer: Elgato Systems

005e

current code is referencing: 0x004f

https://github.com/tolga9009/elgato-gchd/blob/0.2.0/src/gchd.cpp#L23

Updating the code seems to work as intended:

root@incontrol:/home/ascherger/Development/elgato-gchd/build# ./src/gchd 
The Elgato Game Capture HD60 S is currently not supported.
root@incontrol:/home/ascherger/Development/elgato-gchd/build# git diff
diff --git a/src/gchd.cpp b/src/gchd.cpp
index 3cbce8b..b736728 100644
--- a/src/gchd.cpp
+++ b/src/gchd.cpp
@@ -20,7 +20,7 @@
 #define GAME_CAPTURE_HD_2      0x0051
 #define GAME_CAPTURE_HD_3      0x005d // new revision GCHD (HDNew)
 #define GAME_CAPTURE_HD60      0x005c // Game Capture HD60 - unsupported
-#define GAME_CAPTURE_HD60_S    0x004f // Game Capture HD60 S - unsupported
+#define GAME_CAPTURE_HD60_S    0x005e // Game Capture HD60 S - unsupported
 
 // firmware
 const char * FW_MB86H57_H58_IDLE[] =

flyinprogrammer avatar Jan 15 '20 22:01 flyinprogrammer

Hi @flyinprogrammer, my hd 60s also has a different id, I'm trying to let it work as well

davvore33 avatar Jan 16 '20 08:01 davvore33

also, my 60 hd s has a different product id:

Jan 15 16:00:40 incontrol kernel: usb 4-4: New USB device found, idVendor=0fd9, idProduct=005e, bcdDevice=1f.4f
Jan 15 16:00:40 incontrol kernel: usb 4-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 15 16:00:40 incontrol kernel: usb 4-4: Product: Game Capture HD60 S
Jan 15 16:00:40 incontrol kernel: usb 4-4: Manufacturer: Elgato Systems

005e

current code is referencing: 0x004f

https://github.com/tolga9009/elgato-gchd/blob/0.2.0/src/gchd.cpp#L23

Updating the code seems to work as intended:

root@incontrol:/home/ascherger/Development/elgato-gchd/build# ./src/gchd 
The Elgato Game Capture HD60 S is currently not supported.
root@incontrol:/home/ascherger/Development/elgato-gchd/build# git diff
diff --git a/src/gchd.cpp b/src/gchd.cpp
index 3cbce8b..b736728 100644
--- a/src/gchd.cpp
+++ b/src/gchd.cpp
@@ -20,7 +20,7 @@
 #define GAME_CAPTURE_HD_2      0x0051
 #define GAME_CAPTURE_HD_3      0x005d // new revision GCHD (HDNew)
 #define GAME_CAPTURE_HD60      0x005c // Game Capture HD60 - unsupported
-#define GAME_CAPTURE_HD60_S    0x004f // Game Capture HD60 S - unsupported
+#define GAME_CAPTURE_HD60_S    0x005e // Game Capture HD60 S - unsupported
 
 // firmware
 const char * FW_MB86H57_H58_IDLE[] =

have you been able to make your HD60S work then?

Khyretos avatar May 11 '21 11:05 Khyretos

@kireita @flyinprogrammer @davvore33 Any luck getting the HD60S to work on Linux? I'm running Ubuntu 22.04LTS for reference.

RyzeNGrind avatar Oct 13 '22 14:10 RyzeNGrind

not from here unluckily @RyzeNGrind

davvore33 avatar Oct 18 '22 07:10 davvore33