Sean Cross
Sean Cross
libUSB is a fantastic resource, and I use it on Windows for working with e.g. openocd and USB JTAG boxes. But it can be challenging to install and isn't as...
Neat project guys. I would have mentioned it in the talk if I knew about it! The HID descriptor I use for bidirectional communication is https://github.com/xobs/joyboot/blob/master/rx_updater.c#L48 The Rust code I...
I haven't benchmarked it yet as I've only just now gotten reliable transfers. But the spec (section 5.7.4) mentions that "An endpoint for an interrupt pipe specifies its desired bus...
Thank you -- you're right, my brain auto-completed the wrong thing. I *meant* msys2, but I started typing "MS..." and ended up writing "MSVC". I'm trying to replicate what musl.cc...
I get further if I add this to the top of the Makefile: ```makefile export MSYS = winsymlinks ``` Let's see how far it gets...
Some more information. Apparently the more precise variable should be `export MSYS = winsymlinks:lnk`. From my understanding (and I've been wrong here several times before): * MSYS2 is a Linux...
What needs to be done in order to do this? Has any work been started? I've started writing a `block_definitions.v`, but it's complicated somewhat by the different cells. For example,...
I don't remember which restaurant this was at, so I can't verify. However, I do now see the "Order session expired" message now rather than the message saying to not...
I remove the X11 check in Conda on macos in order to get TCL working where X11 doesn't exist. There are no X11 headers in Conda, so this is required...
@RTimothyEdwards I actually just ran into this problem. The issue is that `include/X11/Xlib.h` has the following definition: ```cpp #if !defined(MAC_OSX_TK) # include #endif #ifdef MAC_OSX_TK # include # define Cursor...