Results 225 comments of Jacek Fedoryński

So that at least means that there is communication with the B side. At least the A side seems to think that is has successfully flashed the B side with...

Yeah, just to be clear, best case scenario here is that we identify which part is broken, we will likely not be able to make these boards work with just...

> The table near the bottom of the first page (jfedor2/hid-remapper/tree/master) indicates that '"Flash B side" required' and I was assuming this meant that after writing 'remapper_board.uf2' to the A...

There might be an issue with Low Speed devices on HID Remappers with the built-in hub (and older keyboards have a good chance of being Low Speed). It's not the...

I'm not sure I agree, when typing it's very common to press the next key before releasing the previous one, so if I were to use one of the home...

One issue is that the number of reports is hardwired so you also have to update MAX_INPUT_REPORT_ID in our_descriptor.h. Another is that HID Remapper doesn't currently support array inputs in...

Try adding this to the descriptor: ``` 0x05, 0x01, // Usage Page (Generic Desktop Ctrls) 0x09, 0x80, // Usage (Sys Control) 0xA1, 0x01, // Collection (Application) 0x85, 0x04, // Report...

I just tested this configuration and it works as expected with regard to the right button being sticky while left button is held: ![Screenshot from 2024-03-08 17-28-02](https://github.com/jfedor2/hid-remapper/assets/2271721/39ff40d1-8a30-4fea-9cfc-2d10adab5914) You'd probably also...

You can set the sticky flag on a mapping that activates a layer, making it a toggle.

HID Remapper's report descriptor is fixed, it doesn't change based on what devices are plugged into it. It just doesn't have these keys so it can't pass them through. You...