You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would - of course - be nice to have MAVLink passthrough available in language wrappers.
However, that's not straightforward because it would mean we have to:
Either generate .proto files for all MAVLink messages and then generate the API for all of them. This would be nicely type-safe in these languages but probably gets quite bloaty.
Or expose some sort of interface that packs the MAVLink messages with runtime checks instead of compile team. We could do that with some sort of interface that allows you to set a message and all the fields using string setters/getters. Something along these lines:
It would - of course - be nice to have MAVLink passthrough available in language wrappers.
However, that's not straightforward because it would mean we have to:
Note, we might also be able to use the
oneof
proto thing.The text was updated successfully, but these errors were encountered: