Skip to content

Commit

Permalink
Adds telemetry packet definition step. (nasa#2024)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahBraasch committed May 17, 2023
1 parent 5c05e60 commit 4f65e1e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/Tutorials/MathComponent/Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -2015,6 +2015,24 @@ instance mathReceiver
These lines add the `mathSender` and `mathReceiver`
instances to the topology.

**Packetize the telemetry channels:**
Open the file `RefPackets.xml`. At the bottom, right before `<!—Ignored packets -->`, add the following lines:
```
<packet name="MathSender" id="21" level="3">
<channel name = "mathSender.VAL1"/>
<channel name = "mathSender.OP"/>
<channel name = "mathSender.VAL2"/>
<channel name = "mathSender.RESULT"/>
<packet/>
<packet name="MathReceiver" id="22" level="3">
<channel name = "mathReceiver.OPERATION"/>
<channel name = "mathReceiver.FACTOR"/>
<packet/>
```

These lines describe the packet definitions for the `mathSender` and `mathReceiver` telemetry channels.

**Check for unconnected ports:**
Run the following commands in the `Ref/Top` directory:

Expand Down

0 comments on commit 4f65e1e

Please sign in to comment.