-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pyulog represents char[x]
as x
columns of individual chars
#92
Comments
char[x]
as x
columns of individual chars
We can add a helper to do the conversion. It makes sense, but I'd like to avoid breaking API changes or special handling in the parser for this. |
A helper would be great. |
Can you create a PR? |
I can. I just need to figure out where to put the changes. Got any pointers off the top of your head for where would make sense to put it? |
You could add it to the |
pyulog represents
char[x]
fields asx
number ofstr
fields. It seems less surprising to represent them all as one string instead of having to have a postprocess that concats them later. In the docs it's described as a char[127] which would more intuitively map to a string than 127 char values each with their own key (or in this case column).I've shown an example here but as far as I can tell it impacts all fields that are
char[x]
.https://docs.px4.io/main/en/msg_docs/LogMessage.html
The text was updated successfully, but these errors were encountered: