USB controller support through the Retrode? February 10, 2012 06:37PM | Registered: 13 years ago Posts: 18 |
Re: USB controller support through the Retrode? February 10, 2012 09:07PM | Registered: 12 years ago Posts: 6 |
Re: USB controller support through the Retrode? February 11, 2012 03:26AM | Registered: 13 years ago Posts: 18 |
Re: USB controller support through the Retrode? February 11, 2012 07:59PM | Registered: 12 years ago Posts: 6 |
Re: USB controller support through the Retrode? February 11, 2012 10:48PM | Moderator Registered: 15 years ago Posts: 686 |
Re: USB controller support through the Retrode? February 11, 2012 11:29PM | Registered: 13 years ago Posts: 18 |
Re: USB controller support through the Retrode? February 12, 2012 09:09AM | Registered: 12 years ago Posts: 6 |
Re: USB controller support through the Retrode? February 12, 2012 09:57AM | Moderator Registered: 15 years ago Posts: 686 |
Re: USB controller support through the Retrode? February 12, 2012 08:21PM | Registered: 12 years ago Posts: 6 |
Re: USB controller support through the Retrode? February 12, 2012 11:34PM | Registered: 13 years ago Posts: 18 |
Re: USB controller support through the Retrode? February 13, 2012 01:32PM | Registered: 15 years ago Posts: 276 |
Re: USB controller support through the Retrode? February 13, 2012 02:57PM | Moderator Registered: 15 years ago Posts: 686 |
Re: USB controller support through the Retrode? February 13, 2012 03:47PM | Moderator Registered: 15 years ago Posts: 5,075 |
Quote
Wii(!!!) - details to follow. Thanks to [FelixV] for testing
Re: USB controller support through the Retrode? February 13, 2012 05:15PM | Registered: 12 years ago Posts: 6 |
cp /Volumes/RETRODE/RETRODE.CFG /tmp echo "[HIDMode] 3" >> /tmp/RETRODE.cfg cp /tmp/RETRODE.cfg /Volumes/RETRODE
echo "[HIDMode] 3" >> /Volumes/RETRODE/RETRODE.CFG
fopen(name, "r+"); // write to existing fileand
fopen(name, "w"); // make new filebut I haven't had the chance to give that any deeper testing.
Re: USB controller support through the Retrode? February 15, 2012 09:22PM | Registered: 15 years ago Posts: 276 |
Quote
Matthias_H
you mean when one writes to the SRAM file on the Retrode? By default, nothing would happen and the changes would be lost after a device reset (or immediately, depending on the level of R/W caching that your OS provides). Only when the config option [sramReadOnly] is set to 0, the SRAM is actually written back to the cart. (The way I have it, I usually copy the srm file over to my emulator's search path for SRAM).
Quote
tueidj
As for writing a generic USB HID driver, have you seen the HID spec? Parsing the HID descriptor is a nightmare by itself and then you need to write an interface that lets the app know which features each controller has i.e. how many inputs, what they represent (buttons, axes, feedback etc.), how quick their response time is... it's a lot easier to add support for a specific device and call it a day.
Re: USB controller support through the Retrode? February 15, 2012 11:04PM | Registered: 12 years ago Posts: 6 |
Re: USB controller support through the Retrode? February 21, 2012 09:01PM | Registered: 13 years ago Posts: 18 |