-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from BallAerospace/support_cmd_tlm_partials
Add support for cmd/tlm partials #170
- Loading branch information
Showing
25 changed files
with
243 additions
and
507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
PARAMETER CCSDSVER 0 3 UINT 0 0 0 "CCSDS primary header version number" | ||
PARAMETER CCSDSTYPE 3 1 UINT 1 1 1 "CCSDS primary header packet type" | ||
PARAMETER CCSDSSHF 4 1 UINT 0 0 0 "CCSDS primary header secondary header flag" | ||
ID_PARAMETER CCSDSAPID 5 11 UINT 0 2047 999 "CCSDS primary header application id" | ||
PARAMETER CCSDSSEQFLAGS 16 2 UINT 3 3 3 "CCSDS primary header sequence flags" | ||
PARAMETER CCSDSSEQCNT 18 14 UINT 0 16383 0 "CCSDS primary header sequence count" | ||
OVERFLOW TRUNCATE | ||
PARAMETER CCSDSLENGTH 32 16 UINT 0 65535 12 "CCSDS primary header packet length" | ||
ID_PARAMETER PKTID 48 16 UINT 0 65535 <%= id %> "Packet id" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
APPEND_ITEM CCSDSVER 3 UINT "CCSDS packet version number (See CCSDS 133.0-B-1)" | ||
APPEND_ITEM CCSDSTYPE 1 UINT "CCSDS packet type (command or telemetry)" | ||
STATE TLM 0 | ||
STATE CMD 1 | ||
APPEND_ITEM CCSDSSHF 1 UINT "CCSDS secondary header flag" | ||
STATE FALSE 0 | ||
STATE TRUE 1 | ||
APPEND_ID_ITEM CCSDSAPID 11 UINT 1 "CCSDS application process id" | ||
APPEND_ITEM CCSDSSEQFLAGS 2 UINT "CCSDS sequence flags" | ||
STATE FIRST 1 | ||
STATE CONT 0 | ||
STATE LAST 2 | ||
STATE NOGROUP 3 | ||
APPEND_ITEM CCSDSSEQCNT 14 UINT "CCSDS packet sequence count" | ||
OVERFLOW TRUNCATE | ||
APPEND_ITEM CCSDSLENGTH 16 UINT "CCSDS packet data length" | ||
APPEND_ITEM TIMESEC 32 UINT "Seconds since epoch (January 1st, 1970, midnight)" | ||
APPEND_ITEM TIMEUS 32 UINT "Microseconds of second" | ||
APPEND_ID_ITEM PKTID 16 UINT 1 "Packet id (The combination of CCSDS_APID and PACKET_ID identify the packet)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.