-
We have a 16 bit register telemetry item that could be defined as: We need to display the individual bits in this register on a screen (probably using LEDs) AND still retain the FAULT_FLAGS 16 bit value for display/storage as separate item. What's the best way to break out the bit values for LED display while still retaining/storing the 16bit register item value? The register could be broken down into quantity 16 - 1 bit items as below, but we would lose the 16value in other displays the FPGA guys want to see. could something like this work (haven't been able to test yet but will): Another nice to have would be to put this in a separate configuration file. I was looking into "SELECT" features but couldn't find enough documentation on it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can define overlapping telemetry items using the ITEM keyword and defining the bit offset explicitly. This can go right inline with the current packet definition or moved to another file using SELECT_TELEMETRY and then just declaring the new items under that (again using ITEM). |
Beta Was this translation helpful? Give feedback.
You can define overlapping telemetry items using the ITEM keyword and defining the bit offset explicitly. This can go right inline with the current packet definition or moved to another file using SELECT_TELEMETRY and then just declaring the new items under that (again using ITEM).