Oliver Schönrock
Oliver Schönrock
Not sure if related, but similarly for this: ```C++ constexpr auto operator""m(unsigned long long l) { return quantity(l); } ``` which is trying to define a UDL in this library...
I had something similar. The second param to setBitrate is the frequency of the crystal driving your MCP2515 controller. On my protyping boards (typical ebay/amazon ones) the crystal is 8Mhz....
> PS: I am finding that I get a lot of Error Frames on the Bus at 1Mhz even over just a 10cm Bus with 2 nodes on it. I...
yup not usable as is?
+1 on this being an obstacle. It's really nice but 8s fixed overhead. dual mode/precompile would be fab
oh, and +200k on binary size?? Only using 2 options.
PCH gains about 1s
I don't want to offend your library, which is really good, but these practicalities matter. I just tried: https://github.com/p-ranav/argparse and It adds only 1.3s compile time overhead and 35k to...
Yes. I have no need for those complex options. Others will, which is why CLI11 is so good. I have not checked what exact subset argparse supports. Perhaps that's why...
The 80:20 rule is likely to apply. Make 20 of the "low hanging fruit" changes to get 80% of the available compile time improvement benefits.