Multiplexing video data and telemetry via downlink #2985
Replies: 2 comments 6 replies
-
The CCSDS protocols you mentioned are something we have had on our radar for some time, and the community seems eager to adopt them as well. For these reasons we are seriously considering how we could integrate them in the framework. We have had an effort that had us investigate how integrating those into the framework could look like, and this is where these PRs you found are coming from. #2900 is improving the deframing/routing stack by making deframers easier to implement and swap in, swap out and chain up. We will be picking up that work shortly. As for USLP, it does look very promising. We added it to our roadmap, but unsure how it will be prioritized vs. the other protocols that have been around for a little longer. The past few months we have had to spend a lot of effort onto releasing v3.5.0 on time for our October workshop, so that ate a lot of our time. Hopefully we'll get back to CCSDS soon, but this is also pending some internal prioritization of the work that I can't speak for at the moment... Hopefully that clears things up a little! |
Beta Was this translation helpful? Give feedback.
-
@LeStarch The fork that I've started developing on can be found here note that its very much a WIP however I'm planning on doing a cleanup tomorrow |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I've been working on a flight software project in which one of the necessary features is to multiplex video data alongside telemetry. Originally originally the plan was to create some custom component to leverage one of ffpmegs muxers and to combine a video stream with a subset of the system's telemetry and then send that via a queue to a component which would interface with the transport layer.
This seemed doable and would provide a lot of control over bandwidth use and performance but at the same time it would come with the downsides that the output would no longer be something that fprime-gds or yamcs would be able to understand.
However after doing some research I came across CCSDS and in particular found that the Space Packet Protocol (SPP) and the Unified Space Data Link Protocol (USLP), the former of which seeming more light weight but with only a few mentions of multiplexing support and the later seeming to have a lot but possibly being a bit more heavy weight and beastly to contend with.
Simultaneously I've seen that there is already work ongoing on both the fprime and fprime-gds side of things which seems promising.
To that end I'd be curious what is driving that and if there might be some insight to be gained in how this can be leverage for my use case and if so how I could contribute.
Beta Was this translation helpful? Give feedback.
All reactions