Results 225 comments of Jacek Fedoryński

What version of Quake 3? Can you provide a dump (pcap) file of the network traffic, from Wireshark or similar?

Oh, I see. ioquake3 uses a modified network protocol so that's probably why. But it can fall back to the original protocol on both the client and the server so...

No current plans, sorry. :)

I'm not sure if I understand you correctly, but as with most electronic devices, it won't work unless powered. Connect both sides to something that provides power at all times...

Here's what the main loop looks like: ``` while True: button_state = fetch_button_state() update_input_report(button_state) if tud_hid_ready() and (report != previous_report): tud_hid_report(report) previous_report = report ``` This is executed multiple times...

You can synchronize to the start-of-frame packet. The host sends it every 1ms just before it polls for inputs reports. `usbd_class_driver_t` has a `.sof` callback. And I wouldn't worry about...

It's possible to have CDC and HID at the same time, but I normally just use a separate USB-UART adapter. Wire it to a TX pin on the board and...

I'm not sure, I _think_ you might be good? With serial devices the issue is sometimes how they get power from the serial port, for example serial mice expect voltage...

I can't get it to work with the Waveshare adapter. The Magellan makes a weird constant sound instead of the familiar two beeps on startup. So I guess it does...