Difference between revisions of "DIY USB adapter"

From GIMX
Jump to: navigation, search
(Add detailed instructions for flashing Arduino-compatible atmega32u4-based boards.)
Line 68: Line 68:
 
*[http://gimx.fr/download/gimx-firmwares Firmwares]
 
*[http://gimx.fr/download/gimx-firmwares Firmwares]
 
{{Firmwares/en}}
 
{{Firmwares/en}}
 +
 +
===Teensy boards===
 +
 +
Teensy boards can be easily flashed using the [http://www.pjrc.com/teensy/loader.html Teensy Loader].<br />
 +
It is probably the easiest flashing tool, but it is only compatible with '''genuine''' teensy boards.
 +
 +
===Cheap Arduino-compatible atmega32u4-based boards===
 +
 +
====First-time flashing instructions====
 +
 +
* Download the Arduino Leonardo drivers and save them into the same folder:
 +
** [https://github.com/arduino/Arduino/raw/master/build/windows/dist/drivers/arduino.cat arduino.cat]
 +
** [https://github.com/arduino/Arduino/raw/master/build/windows/dist/drivers/arduino.inf arduino.inf]
 +
* Right-click on the arduino.inf file and click on Install.
 +
* Download the [http://sourceforge.net/projects/arduinodev/files/ArduinoBuilder/ArduinoBuilder-0.8.8.7z/download Arduino Builder tool] and extract the archive (using [http://www.7-zip.org/ 7zip]).
 +
* Run ArduinoBuilder.exe.
 +
* Click on "Load Sketch / HEX", and select the desired atmega32u4.hex firmware.
 +
* Click on "Board Type" and select "Arduino Leonardo".
 +
* In the Arduino Builder tool, click on the COM port that is named "Arduino Leonardo (COMX)" in the device manager.
 +
Upon success a "Uploading completed!" message should be displayed.
 +
 +
====Further flashing====
 +
 +
Because GIMX reprograms the USB interface, the COM port used in the First-time flashing instructions is no more available.<br />
 +
Fortunately, there is a way to make the board run the bootloader:
 +
* Make sure that the USB to UART board (e.g. CP2102) is connected and powered, and that the wiring with the atmega32u4 board is correct.
 +
* Make sure that the atmega32u4 board is connected and powered.
 +
* Run ArduinoBuilder.exe.
 +
* Click on "Load Sketch / HEX", and select the desired atmega32u4.hex firmware.
 +
* Click on "Board Type" and select "Arduino Leonardo".
 +
* In the Arduino Builder tool, click on the COM port that is named "Silicon Labs CP210x ... (COMX)" in the device manager (or whatever the name of your USB to UART board is).
 +
* The following message should appear: "Forcing reset using 1200bps open/close on COM3...".
 +
* Quickly unplug/replug the atmega32u4 board.
 +
* The atmega32u4 board should run the bootloader, the Arduino builder tool should find the Arduino Leonardo COM port, and flash the firmware.
 +
Upon success a "Uploading completed!" message should be displayed.
 +
 +
====Other tools====
  
 
<!--T:10-->
 
<!--T:10-->
There are several tools that can be used to load the hex file:
+
There are a few other tools that can be used to load the hex file:
* avrdude exe comes with the arduino programming tool, works for cheap ATmega32u4 boards
+
* avrdude: comes with the Arduino IDE, and with the Arduino Builder tool
* [http://www.pjrc.com/teensy/loader.html Teensy loader] (only compatible with genuine teensy boards)
+
* [http://www.atmel.com/tools/FLIP.aspx Flip utility from Atmel] (not compatible with genuine teensy boards and with Arduino-compatible atmega32u4-based boards)
* [http://www.atmel.com/tools/FLIP.aspx Flip utility from Atmel] (not compatible with genuine teensy boards)
+
* [http://dfu-programmer.sourceforge.net/ dfu-programmer command-line tool] (not compatible with genuine teensy boards and with Arduino-compatible atmega32u4-based boards)
* [http://dfu-programmer.sourceforge.net/ dfu-programmer command-line tool] (not compatible with genuine teensy boards)
 
  
 
<!--T:11-->
 
<!--T:11-->
Line 81: Line 117:
 
     sudo dfu-programmer at90usb162 flash at90usb162.hex
 
     sudo dfu-programmer at90usb162 flash at90usb162.hex
 
     sudo dfu-programmer at90usb162 reset
 
     sudo dfu-programmer at90usb162 reset
 
If you want to build on the cheap, you can get a cp2102 based USB to TTL for £1 and an ATmega32u4 board for around £3.50, if you do and you're on windows you may have found the firmware upload can be tricky. Well here's how to do it. The board I got showed up as an arduino leonardo (it's not) and would accept uploads only from the arduino programming tool (unfortunately that will not upload hex files but uploading the blink example is good enough for now). Fortunately that tool gives a nice debug output if you turn it on (it's in the options). It uses the program avrdude to do the actual upload and the trick was that it puts the board into programming mode first by connecting to it at 1200 baud. (while other tools do this they then fall at the next hurdle which was that while the activating and uploading are on different com ports). Your COM ports may vary but the debug from the arduino program will show you the ones needed. once you know the two ports it uses you can use the following in a command window
 
 
avrdude.exe" -C"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.conf" -v -n -patmega32u4 -cavr109 -PCOM3 -b1200
 
 
followed within 2 seconds by
 
 
avrdude.exe" -C"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.conf" -v -patmega32u4 -cavr109 -PCOM5 -b57600 -D -Uflash:w:<PATH TO FIRMWARE>\atmega32u4.hex:i
 
 
Obviously with the correct paths in there and with the -PCOM3 / -PCOM5 set to the com ports your device is on. Once you've successfully got your new firmware on board you'll find that you're good to go but what if you want to switch to new firmware? well at this point the device is not shown as a COM device at all. the way to get it back into programming mode is to hit the reset switch, for our cheap boards this means bridging the RST pin to ground (GND) while it is connected. This seemingly does the same thing as the connecting at 1200 baud, you'll likely get a beep from your pc to tell you a new device is connected, but only again for a couple of seconds, so you'll need to run the upload command (the second of the commands above) within seconds of the reset, if all is well you'll see the upload sequence again.
 
  
 
==Wiring== <!--T:12-->
 
==Wiring== <!--T:12-->

Revision as of 21:06, 28 October 2015

Other languages:
English • ‎français

This page explains how to build a pc to PS3/Xbox 360/PS4/Xbox One usb adapter.

A much easier but less complete tutorial is also available: DIY USB Adapter for dummies.
A German translation of a previous version is also available on the forum: old German translation.

Warning: you are responsible for the hardware you buy, and anything right or wrong you do with this.

Required hardware parts

USB to serial TTL converter

Make sure it works at 500kbps and that it is 5V tolerant.

chip CP2102 FT232R PL2303 CH340 FT230X
5V tolerant yes (*) (*) (*) yes
500 kbps yes yes no no yes
compatible yes (*) no no yes

(*) depends on the board
Examples:

AVR USB development board

Make sure it is working at 5V and that is has a chip among the following: at90usb82, at90usb162, at90usb646, at90usb647, at90usb1286, at90usb1287, atmega16u2, atmega32u2, atmega16u4, atmega32u4
Examples:

Recommended setup

  • CP2102 converter from ebay (very low price, but sometimes low delivery)
  • Teensy 2.0 board (low price, good quality, and quick delivery).

Firmware loading

  • EMUJOYSTICKPS3: HID joystick emulation, with 16bit stick axes, for PS3
  • EMUPS3: Sixaxis emulation, for PS3
  • EMU360: 360 pad emulation, for Xbox 360
  • EMUPS4: Hori Pad FPS Plus emulation, for PS4 (with touchpad support)
  • EMUXONE: Xbox One pad emulation, for Xbox One
  • EMUG29PS4: Logitech G29 gaming wheel emulation, for PS4, with force feedback support
  • EMUG27PS3: Logitech G27 gaming wheel emulation, for PS3, with force feedback support
  • EMUGTFPS2: Logitech GT Force emulation, for PS2, with force feedback support
  • EMUDFPS2: Logitech Driving Force emulation, for PS2, with force feedback support
  • EMUDFPPS2: Logitech Driving Force Pro emulation, for PS2, with force feedback support
  • EMUG27PC: Logitech G27 gaming wheel emulation, for PC, force feedback support

Teensy boards

Teensy boards can be easily flashed using the Teensy Loader.
It is probably the easiest flashing tool, but it is only compatible with genuine teensy boards.

Cheap Arduino-compatible atmega32u4-based boards

First-time flashing instructions

  • Download the Arduino Leonardo drivers and save them into the same folder:
  • Right-click on the arduino.inf file and click on Install.
  • Download the Arduino Builder tool and extract the archive (using 7zip).
  • Run ArduinoBuilder.exe.
  • Click on "Load Sketch / HEX", and select the desired atmega32u4.hex firmware.
  • Click on "Board Type" and select "Arduino Leonardo".
  • In the Arduino Builder tool, click on the COM port that is named "Arduino Leonardo (COMX)" in the device manager.

Upon success a "Uploading completed!" message should be displayed.

Further flashing

Because GIMX reprograms the USB interface, the COM port used in the First-time flashing instructions is no more available.
Fortunately, there is a way to make the board run the bootloader:

  • Make sure that the USB to UART board (e.g. CP2102) is connected and powered, and that the wiring with the atmega32u4 board is correct.
  • Make sure that the atmega32u4 board is connected and powered.
  • Run ArduinoBuilder.exe.
  • Click on "Load Sketch / HEX", and select the desired atmega32u4.hex firmware.
  • Click on "Board Type" and select "Arduino Leonardo".
  • In the Arduino Builder tool, click on the COM port that is named "Silicon Labs CP210x ... (COMX)" in the device manager (or whatever the name of your USB to UART board is).
  • The following message should appear: "Forcing reset using 1200bps open/close on COM3...".
  • Quickly unplug/replug the atmega32u4 board.
  • The atmega32u4 board should run the bootloader, the Arduino builder tool should find the Arduino Leonardo COM port, and flash the firmware.

Upon success a "Uploading completed!" message should be displayed.

Other tools

There are a few other tools that can be used to load the hex file:

  • avrdude: comes with the Arduino IDE, and with the Arduino Builder tool
  • Flip utility from Atmel (not compatible with genuine teensy boards and with Arduino-compatible atmega32u4-based boards)
  • dfu-programmer command-line tool (not compatible with genuine teensy boards and with Arduino-compatible atmega32u4-based boards)

dfu-programmer example:

   sudo dfu-programmer at90usb162 erase
   sudo dfu-programmer at90usb162 flash at90usb162.hex
   sudo dfu-programmer at90usb162 reset

Wiring

The only thing you have to do is to connect the following pins:

USB dev board USB to UART board
GND GND
RX TX / TXO / RXD
TX RX / RXI / TXD

With a Teensy 2.0 as a USB dev board:

Teensy 2.0 USB to UART board
GND GND
D2 TX / TXO / RXD
D3 RX / RXI / TXD

If you use the arduino on-board USB to serial converter, Rx and Tx are inverted, i.e. Rx = TX▶ and Tx = RX◀

The example below shows how to connect a CP2102 converter (left) to a Teensy 2.0 board (right):

It's possible to solder wires or to use jumper wires (these are generally provided with USB to serial TTL boards) in case your AVR USB board has header pins:

Examples:

  • Bumble-b and FT232RL wired on a breadboard:
  • Teensy++ and CP2102 wired on a breadboard:
  • Teensy 2.0 and CP2102 soldered:

Connection

If it's not already done, install GIMX.
Connect the USB to UART converter to your PC, and connect the usb dev board to your console.
Turn the console on (the ps/guide buttons are not working at this point).
The console should detect a controller (if you add another controller, it should be detected as controller #2).
Start gimx-launcher:
TODO: update screenshot

In Ubuntu/Linux, the USB to UART converter should be detected as "ttyUSBX" (with 'X' a number).
In Windows, it should be detected as "COMX" (with 'X' a number). Check the device manager to select the right one.

Now that your adapter is ready you can follow the instructions on the Quick Start page.