boredcircuits
Results
2
comments of
boredcircuits
I'm interested in this feature as well. Getting bitfields and endianness to work correctly is very tricky and needs a library solution. From my experience, the only way to handle...
@henrikssn That makes sense when it comes to fields that are byte-aligned ... but what if you have something like this? ```struct BitAlignedMixedEndian(LE, LE, BE, LE);``` Which bits of which...