-
We are using COSMOS4 to interface to an instrument for commanding and telemetry. We have a particular command that will send binary data, in 256 bytes chunks, to the instrument for loading data into memory. We can use this defined command fine within scripts when sending binary data as we can just use multiple commands to send binary data blobs larger than 256 bytes. My question is, is there a way within the COSMOS GUI interface to somehow send binary data, from a file, using the defined command? If there is an example should this kind of functionality, or something similar, would you mind pointing me to it? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In COSMOS 4, Command Sender has a "Send Raw" option in one of the menus, that will send a raw file of fully pre-built commands to an interface. That's the closest you'll probably get. I don't think a generic solution for "break up this binary file of data into a bunch of commands" is really possible. Scripts are the right solution for that. |
Beta Was this translation helpful? Give feedback.
In COSMOS 4, Command Sender has a "Send Raw" option in one of the menus, that will send a raw file of fully pre-built commands to an interface. That's the closest you'll probably get.
I don't think a generic solution for "break up this binary file of data into a bunch of commands" is really possible. Scripts are the right solution for that.