va1da5 / th8a-emulator-pico

TM TH8A shifter emulator using Raspberry Pi Pico

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generic USB Shifter to Thrustmaster TH8A Emulator

The repository includes source code for a Thrustmaster TH8A emulator that utilizes the Raspberry Pi Pico microcontroller unit (MCU) and a generic USB shifter from AliExpress. This project does not encourage the use of third-party addons for your sim racing setup. It is solely intended as an educational exercise. I do not take any responsibility for actions taken while using the information or source code from this project.

Motivation

The Raspberry Pi Pico micro-controller is an amazing piece of technology that surpasses the capabilities of generic Arduino boards in most cases. I recently purchased a few myself and was eager to put them to use in a real-world project. Since I've developed a newfound interest in sim racing, I decided to embark on an emulator project to keep myself motivated and see it through to completion.

Journey

The project journey began with me researching available generic USB gear shifters. After some time, I found one that seemed to offer the best value for the price. However, I knew it would take at least a solid month before I could actually receive it.

While waiting for the gear shifter to arrive, I decided to explore how to interact with the Thrustmaster wheel base through its dedicated port. It didn't take long for me to come across an amazing project by azzajess that had most of the information I was looking for. The project had all the features I wanted, but it was designed for the Arduino ecosystem. Luckily, it also included links to references explaining the protocol used and the data sent to the wheel base. With this wealth of information, I felt confident enough to start working on my own adaptation.

The implementation of the communication protocol between the wheelbase and Pico was not too difficult. I actually had a working proof-of-concept before the gear shifter arrived. However, I encountered some challenges when trying to make Pico communicate with the USB gear shifter.

The Raspberry Pi Pico MCU has a fantastic C/C++ SDK and provides examples for most use cases. It even comes with an example that allows you to connect a USB keyboard and log key presses. This example served as an excellent starting point for my testing. I made a few adjustments to the source code to capture more context details and successfully hooked up keyboards and mice. However, I faced some difficulties when trying to connect the USB gear shifter.

No matter what I tried, I couldn't get it to work. I noticed that Pico detected something being connected, but there was no further communication and the USB disconnect routine kept looping indefinitely. I even attempted to analyze the situation using Wireshark for USB protocol analysis, but I didn't notice any significant differences compared to when using a keyboard. Interestingly, it did work when connected to a PC.

At this point, I've already spent countless hours using a debugger and stepping through each function to figure out why Pico is having trouble determining the USB bus speed and establishing communication with the shifter. I decided to make some changes in the SDK to see if I could trigger a different path that would provide more details or even get it working somehow. By sheer luck, I stumbled upon something when I changed the values of the SIE_CTRL_BASE bits. When I switched the bit from USB_SIE_CTRL_PULLDOWN_EN_BITS to USB_SIE_CTRL_PULLUP_EN_BITS, the connection started working 🀯. I was a bit confused about what exactly this change accomplished and what adjustments were necessary to ensure that the SDK code remained unchanged.

After delving further into the RP2040 datasheet, I discovered some interesting information about USB pull resistors and how they determine the bus speed. I also did some additional research online, which only confirmed my initial observation: it seems that the USB gear shifter may be missing the necessary pull-up resistors that are responsible for defining the USB bus speed. It was time to open up the USB gear shifter and inspect its internals.

Well, the mechanical parts seemed sturdy, but I was quickly disappointed with the electronics when I discovered that the main MCU was just a cheap clone of the STM32.

Since there were no external pull-up resistors available, I decided to take the next logical step and add one myself.

This simple hardware patch has proven to work as intended, allowing the Raspberry Pi Pico to correctly identify the USB bus speed and send data over it.

After assembling all the parts, I was able to bring the emulator to life. It's a straightforward device that acts as a middleman, interpreting commands from a USB HID device and translating them into the I2C protocol to send to the wheelbase. This approach not only reduced the cost of the parts compared to the previously mentioned project but also achieved the desired functionality with ability to further expand on it.


Technical Details

UDEV Rule

Create udev rule for Pico UART device

cat > /etc/udev/rules.d/95-pico.rules

# Raspberry Pi Pico
SUBSYSTEM=="tty", ATTRS{idVendor}=="2e8a", ATTRS{idProduct}=="000c", GROUP="dialout", MODE="0666", SYMLINK+="pico"

Monitor UART

minicom -b 115200 -8 -D /dev/pico
# or
minicom -b 115200 -8 -D /dev/ttyACM0

Connection

  • VDD -> RED
  • VSS -> GND
  • I2C-SCL -> WHITE
  • I2C-SDA -> GREEN

Connection Diagram

connections

Raspberry Pi Pico Pin-outs

Original Raspberry Pi Pico

Original Raspberry Pi Pico

Pink Chinese Clone

Pink Chinese Clone

Flash Binaries

# build binary manually
make build

# flash binary directly using openocd
make flash

# build and flash
make apply

Picoprobe Wiring

wiring diagram

USB Shifter Analysis

lsusb
# ...
# Bus 001 Device 033: ID 8587:5757 FreeJoy JACK-SQ
# ...

# Find out more details about specific USB device.
lsusb -d 8587:5757 -v

Wireshark filter for USB Device 33 on Bus 1 usb.src == "1.33.1" || usb.dst == "1.33.1".

Notes

Queue is being filled using interrupts. Later, pooling task reads from the queue and acts on it.

IRQ calls static void __tusb_irq_path_func(hcd_rp2040_irq)(void) function.

// USB controller memory location
#define USBCTRL_REGS_BASE _u(0x50110000)

The USB shifter is missing a 1.5K pull-up resistor on DP (D+) line that would let MCU know its supported speed.

TSS Sparco handbrake I2C data @forum

02 0C 02 00 FF 80 81 80 81 00 00 00 00 00

02 0C 02 00 8A 80 4D 80 4D 00 00 00 00 00

02 0C 02 00 82 80 4A 80 4A 00 00 00 00 00

02 0C 02 01 17 7F 20 7F 20 00 00 00 00 00

02 0C 02 01 0F 7F 1D 7F 1D 00 00 00 00 00

Above TSS handbrake's I2C data mean about 0-100% brake force. Of course you need to send out every row maybe 100 times. Because of 250ms. Elsewhere you won't see anything.

Handbreak min -> max

0  02 02 02 02 02 // TSS handbrake
1  0C 0C 0C 0C 0C // Unknown
2  02 02 02 02 02 // ?? Device ID
3  00 00 00 01 01 // Unknown
4  FF 8A 82 17 0F // Unknown
5  80 80 80 7F 7F // Unknown ◄─┐
6  81 4D 4A 20 1D // Unknown ◄─│─┐
7  80 80 80 7F 7F // Unknown β—„β”€β”˜ β”‚
8  81 4D 4A 20 1D // Unknown β—„β”€β”€β”€β”˜
9  00 00 00 00 00 // Unknown
A  00 00 00 00 00 // Unknown
B  00 00 00 00 00 // Unknown
C  00 00 00 00 00 // Unknown
D  00 00 00 00 00 // Unknown

References

About

TM TH8A shifter emulator using Raspberry Pi Pico

License:MIT License


Languages

Language:C++ 77.7%Language:CMake 8.7%Language:C 5.8%Language:Dockerfile 5.6%Language:Makefile 2.1%