BatteryInfo message

Of course. If you have, say, a braking resistor on a robot, it would probably also measure the current, voltage, and the amount of dissipated energy, hence a yet another Source. There may be a separate battery for the payload – also a Souce, etc. It is only natural that similar physical processes are modeled using the same type; that’s what types are for, in the end.

Thank you, fixed.

This has been finished yesterday, although it is not yet merged (currently under review, ETA next week). But you can already use it; here’s a relevant quote from the pull request:

git clone https://github.com/UAVCAN/nunavut --branch c-serialization-corrections
cd nunavut
pip install .
cd -
git clone https://github.com/UAVCAN/public_regulated_data_types/
nnvg --target-language c --pp-max-emptylines=1 --pp-trim-trailing-whitespace --target-endianness=little --enable-serialization-asserts public_regulated_data_types/uavcan

Options --pp-max-emptylines=1 --pp-trim-trailing-whitespace will become unnecessary after #159 is fixed.

Option --target-endianness=little may be omitted, which will result in endianness-agnostic code that is portable but slower and possibly larger.

Option --enable-serialization-asserts injects cross-checks in the generated serialization routines which slows them down and increases the ROM footprint but protects against possible memory corruption and detects some of the possible issues in the generated code. It is recommended to always enable it.

These examples might help, I think: Libcanard: Examples, Starters, Tutorials - #4 by hugo. If you have any specific questions, do ask.