dbcppp
dbcppp copied to clipboard
C/C++ DBC file parser/tool
I would suggest to add a const iterator to class Iterable besides to the modifiable iterator. Example for https://github.com/xR3b0rn/dbcppp/blob/master/include/dbcppp/Iterator.h ``` template class Iterable { public: Iterable(Iterator begin, Iterator end) :...
E.g. instead of ``` for (const auto& sig : rhs.Signals()) { auto beg = _signals.begin(); auto end = _signals.end(); equal &= std::find(beg, end, sig) != _signals.end(); } ``` That can...
Atm. libdbcppp prints the error to std::cout, what should be improved in a way, that the programmer does have the control over what to do in error case. Those error...
Another project that recently implemented this in a PR can be seen here: https://github.com/tplgy/cppcodec/pull/76. Basically, allows massively simplified project configuration. The end goal for me is that I can do...
Hello, Thank you so much for the nice tools. There is a typo in the decode explanation in README. candump any | dbcppp decode --bus=vcan0,file1.dbc --bus=vcan1,file2.dbc should be candump any...
Hello, I am attempting to implement your C++ example within my application. However it's run error. The line `can_frame frame;` compile failed, Compiler tips `'can_frame': undeclared identifier`. Where is this...