Jérôme Laheurte

Results 30 comments of Jérôme Laheurte

Very cool indeed :)

You don't need to copy anything in Libraries (except for LUFA), the code should build in-place. opcodes.h is generated by make.py indeed; what problem do you have running it exactly...

I'd like to make something a bit more "modular" but the Arduino dev environment does not make this easy. I'll see if I can factor out the proxy code in...

I just pushed a new commit on master, adding the generated header files, so you should be able to build the code directly now. You should first uncomment the #define...

You have to plug the Dualshock to the controller and press PS IIRC; nothing can happen before that.

Ah by "controller" you meant the Dualshock :) No, it should turn blue. Sometimes there are race conditions in the various responses to USB round-trips; try plugging the setup after...

Mmmh, that's strange. It may be symptomatic of a problem on the OUT interrupt endpoint. We'll see I guess.

My first prototypes used the HID library but it quickly became clear it doesn't allow the kind of low-level USB access I need to trick the PS4. I'll take a...

It is, but it's also badly designed and next to impossible to extend or use in "advanced" situations. LUFA on the other hand enables the user to do pretty much...

I use basically all of the low-level device (not host) USB APIs. At first I tried using the Arduino built-in USB code but it didn't have some of the core...