-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Telemetry database access from inside FSW #3013
Comments
From @vietjnguyen
Worth considering this idea for any implementation of this. |
Talking in a meeting:
|
Talked again:
|
Rationale
In order to allow the advanced sequencing language to perform complex conditions based on the state of the flight software, the values of telemetry channels will need to be accessible during runtime in a generic way.
Example syntax in the advanced sequencing language:
The current implementation stores telemetry channels only in their serialized form. This allows it to be generic but means that accessing the channel values requires deserializing them, which is not ideal.
Feature Description
Fw::PolyType
on a query. However, if it does, thevoid*
option forPolyType
should be a pointer to a deserialized type, not a serialized byte array.channel.memberName.subMemberName
instead of just queryingchannel
and having to figure out how to get the members and sub members.The text was updated successfully, but these errors were encountered: