Skip to content

Commit

Permalink
change tlm id pos in tlm space packet header
Browse files Browse the repository at this point in the history
  • Loading branch information
meltingrabbit committed Jan 28, 2022
1 parent 2eae537 commit c104772
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions TlmCmd/Ccsds/tlm_space_packet.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

static const SP_ParamExtractionInfo TSP_pei_2nd_hdr_ver_ = { 6, 0xff, 0, 1}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_board_time_ = { 7, 0xff, 0, 4}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_global_time_ = {11, 0xff, 0, 8}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_ob_sn_time_ = {19, 0xff, 0, 4}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_tlm_id_ = {23, 0xff, 0, 1}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_tlm_id_ = {11, 0xff, 0, 1}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_global_time_ = {12, 0xff, 0, 8}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_ob_sn_time_ = {20, 0xff, 0, 4}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_dest_flags_ = {24, 0xff, 0, 1}; // 11111111b
static const SP_ParamExtractionInfo TSP_pei_dr_ptn_ = {25, 0x0f, 0, 1}; // 11111111b

Expand Down
6 changes: 3 additions & 3 deletions TlmCmd/Ccsds/tlm_space_packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
* |---------+-------+-------+------------------|
* | 6 | 0 | 8 | Sec. HDR Ver |
* | 7 | 0 | 32 | Board Time |
* | 11 | 0 | 64 | Global Time |
* | 19 | 0 | 32 | On-Board |
* | 11 | 0 | 8 | Tlm ID |
* | 12 | 0 | 64 | Global Time |
* | 20 | 0 | 32 | On-Board |
* | | | | Subnetwork Time |
* | 23 | 0 | 8 | Tlm ID |
* | 24 | 0 | 8 | Dest Flags |
* | 25 | 0 | 8 | DR Partition |
* |---------+-------+-------+------------------|
Expand Down

0 comments on commit c104772

Please sign in to comment.