Replies: 1 comment
-
|
You can create vector of input message in C++ modules, and arrays of input messages in C modules. See the documentation on http://hanspeterschaub.info/basilisk/Learn/makingModules.html where it talks about "Making C Modules" and "Making C++ Modules" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Let's say I want to create my own Python Module Class. For the Python Module to communicate with different modules I use messages. To declare and initialize the messages I call something like this in the
__init__function of my Python module :self.rwSpeedOutMsg = messaging.RWSpeedMsgReader()How to I create an array of multiple of the same messages. Or can I wrap multiple messages into one message somehow?
Beta Was this translation helpful? Give feedback.
All reactions