Robin Lambertz

Results 193 issues of Robin Lambertz

```c struct Test { u8 data; } Test test @ 0; if (test.data == 0) u8 test2 @ 0x04; ``` This fails with the following error: "Parser: invalid sequence".

bug

### What feature would you like to see? The ability to nest `unions` into `structs` anonymously. For instance: ```c struct ResourceDirectoryEntry { u32 nameOffsetOrIntegerId; union { u32 dataEntryOffset; u32 subdirectoryOffset;...

feature request

This is a bit of a longshot, and I'm not sure if it makes sense. When compiling with `-C control-flow-guard=yes`, it'd be really cool if C code build with `cc-rs`...

Allow the user to specify the id of the message himself.

# Description The current NPDM format is going to change in the near future. In order to make it easier for the homebrew ecosystem to move to the new format,...

Rustdoc has moved from using hoedown to using pulldown_cmark. There are many upsides to using pulldown_cmark, but the most practical reason to move to it is to remove reliance on...

# Description The current NPDM format is going to change in the near future. In order to make it easier for the homebrew ecosystem to move to the new format,...

# Description The current NPDM format is going to change in the near future. In order to make it easier for the homebrew ecosystem to move to the new format,...

Hey all, I've been working on my own custom firmware for the Steam Controller, heavily helped by the documentation found here, but also by my own reverse engineering. In doing...

This is an issue to gather information about the HID Controller Interface protocol, as described [here](https://github.com/greggersaurus/OpenSteamController/blob/master/ReverseEngineering/usbInterface.md#ep3-controller). Look at #25 for my current progress. Old information The HID Controller Interface is...