Replies: 1 comment 4 replies
-
|
I've continued to dig around examples and documentation, but still haven't found a satisfactory answer. |
Beta Was this translation helpful? Give feedback.
4 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.
-
I work on a cFS distribution where we have the need for multiple apps to use the same mission-specific parameters. We intended to use a table to hold these values. As I understand it, if multiple apps were to register the same table, there would be multiple copies of the table in the Table Registry, each prepended with an app name, and subsequent updates to any of these tables would cause the copies to get out of sync. The solution to that problem is to use the
CFE_TBL_ShareAPI, but this seems to mean that a single app needs to be the "owner" or "originator" of the table.In the case of our distribution, the data in the table isn't coupled to any one of the applications more than the others, so it seems weird to have to designate one as the owner of the table. One solution might be to have an app for the sole purpose of managing tables that multiple apps need. Are there any other approaches to this? Is there one that is preferred or established practice?
Beta Was this translation helpful? Give feedback.
All reactions