Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C2A内のpacket標準としてCCSDS Space Packet を実装する.そして,Common Packet を抽象化する. #217

Merged
merged 19 commits into from
Jan 31, 2022

Conversation

meltingrabbit
Copy link
Collaborator

@meltingrabbit meltingrabbit commented Jan 25, 2022

概要

C2A内のpacket標準としてCCSDS Space Packet を実装する.そして,Common Packet を抽象化する.

Issue

詳細

  • CCSDS Space Packet を実装し,これまで C2A で使っていた TCPacket を置き換えた.
    • これに伴い,今まで実体がすべて TCP だった CTCP,CTP,CCPがそれぞれ,SP,TSP,CSPとなった.
    • パケット構造はこれ
    • /**
      * @file
      * @brief CCSDS で規定される Space Packet の テレメ版の実装
      * @brief C ではテンプレートが使えないため,別で定義する
      * @note 詳細は space_packet.h を参照
      * @note 現在は, Sec. HDR Ver.1 のみ.追加するときに拡張していく
      * @note packet 構造
      * |---------+-------+-------+------------------|
      * | Pos | Pos | size | name |
      * | [octet] | [bit] | [bit] | |
      * |---------+-------+-------+------------------|
      * | === Primary Header ======================= |
      * |---------+-------+-------+------------------|
      * | 0 | 0 | 3 | Version No |
      * | 0 | 3 | 1 | Packet Type |
      * | 0 | 4 | 1 | Sec. HDR Flag |
      * | 0 | 5 | 11 | APID |
      * | 2 | 0 | 2 | Sequence Flags |
      * | 2 | 2 | 14 | Sequence Count |
      * | 4 | 0 | 16 | Packet Data Len |
      * |---------+-------+-------+------------------|
      * | === Secondary Header ===================== |
      * |---------+-------+-------+------------------|
      * | 6 | 0 | 8 | Sec. HDR Ver |
      * | 7 | 0 | 32 | Board Time |
      * | 11 | 0 | 8 | Tlm ID |
      * | 12 | 0 | 64 | Global Time |
      * | 20 | 0 | 32 | On-Board |
      * | | | | Subnetwork Time |
      * | 24 | 0 | 8 | Dest Flags |
      * | 25 | 0 | 8 | DR Partition |
      * |---------+-------+-------+------------------|
      * | === User Data Field ====================== |
      * |---------+-------+-------+------------------|
      * | 26 | 0 | * | Tlm Data #0 |
      * | * | 0 | * | Tlm Data #1 |
      * | * | 0 | * | Tlm Data #2 |
      * | * | 0 | * | ... |
      * |---------+-------+-------+------------------|
      *
      * 以下の 3 つの時刻情報をパケットに仕込む
      * - Board Time
      * - テレメパケットを生成したボードのテレメ生成時間. TI など.型は任意.
      * - Global Time
      * - テレメパケットを生成したボードの絶対時刻でのテレメ生成時刻. GPS Time や unixtime など.型は任意.
      * - 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF の場合, パケット中継中に MOBC で上書きされる
      * - FIXME: 一旦 double で実装するが,本当は変えたほうが良いかもしれない...?
      * - On-Board Subnetwork Time
      * - オンボードサブネットワークでのテレメ生成時刻.オンボードサブネットワーク TI など.型は任意.
      * - 0xFFFFFFFF の場合, パケット中継中に MOBC で上書きされる
      */
      #ifndef TLM_SPACE_PACKET_H_
      #define TLM_SPACE_PACKET_H_
    • /**
      * @file
      * @brief CCSDS で規定される Space Packet の コマンド版の実装
      * @brief C ではテンプレートが使えないため,別で定義する
      * @note 詳細は space_packet.h を参照
      * @note 現在は, Sec. HDR Ver.1 のみ.追加するときに拡張していく
      * @note packet 構造
      * |---------+-------+-------+------------------|
      * | Pos | Pos | size | name |
      * | [octet] | [bit] | [bit] | |
      * |---------+-------+-------+------------------|
      * | === Primary Header ======================= |
      * |---------+-------+-------+------------------|
      * | 0 | 0 | 3 | Version No |
      * | 0 | 3 | 1 | Packet Type |
      * | 0 | 4 | 1 | Sec. HDR Flag |
      * | 0 | 5 | 11 | APID |
      * | 2 | 0 | 2 | Sequence Flags |
      * | 2 | 2 | 14 | Sequence Count |
      * | 4 | 0 | 16 | Packet Data Len |
      * |---------+-------+-------+------------------|
      * | === Secondary Header ===================== |
      * |---------+-------+-------+------------------|
      * | 6 | 0 | 8 | Sec. HDR Ver |
      * | 7 | 0 | 8 | Command Type |
      * | 8 | 0 | 16 | Command ID |
      * | 10 | 0 | 4 | Dest Type |
      * | 10 | 4 | 4 | Execution Type |
      * | 11 | 0 | 32 | Time Indicator |
      * |---------+-------+-------+------------------|
      * | === User Data Field ====================== |
      * |---------+-------+-------+------------------|
      * | 15 | 0 | * | Cmd Param #0 |
      * | * | 0 | * | Cmd Param #1 |
      * | * | 0 | * | Cmd Param #2 |
      * | * | 0 | * | ... |
      * |---------+-------+-------+------------------|
      */
      #ifndef CMD_SPACE_PACKET_H_
      #define CMD_SPACE_PACKET_H_
  • それに伴い,C2Aの様々な場所で依存性の一時的な対応が行われている.

検証結果

  • 既存のテストがすべて通ればOK.ただ 以下の 補足 で示すところは,後で対応が必要

影響範囲

  • 一旦,依存性の強い MEM DUMP はコメントアウトしている
  • Data Recorder は動く自信はないので後で確認する
  • WINGS の対応が終わらないと,完全には動かせないかも?(categoryの互換性はない)

補足

  • 以下は別の PR で対応 ( CTCP分離とSpacePacket実装に伴って,一時的な対応をしたところを直す #225 )
    • memory dump App
    • tcp_to_m_pdu.c
    • TCSegment, TCFrame
    • GSまわり,gs_validate.c, gs.c
    • PH の関連部分の整理
    • C2A間通信
    • 新設された Tlm 2nd Headerの, GENERATE_TLM 対応(多分コマンド引数増やさないとダメ) ADU counter.
    • BCT での TCP 依存
    • data recorder対応
    • 各Appのheaderでのinclude を ctcp から ccp にしたい
    • driver_super_issl_format
    • 各種FIXME
  • PacketList で使える packet の型を任意にする #212 がマージされ次第,マージ先のブランチを develop に差し替えること!!!
  • これをマージすると,旧TCPをつかってるボードとのC2A間通信はできなくなるので,注意すること!(別PRで対応)

@meltingrabbit meltingrabbit added documentation Improvements or additions to documentation enhancement New feature or request priority::high priorityg high labels Jan 25, 2022
@meltingrabbit meltingrabbit self-assigned this Jan 25, 2022
@meltingrabbit meltingrabbit changed the base branch from develop to feature/update_pl_to_compatible_with_any_packet January 25, 2022 16:45
@meltingrabbit meltingrabbit changed the base branch from feature/update_pl_to_compatible_with_any_packet to develop January 26, 2022 16:26
@meltingrabbit
Copy link
Collaborator Author

#212 がマージされたので,rebase

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

check_coding_rule

TlmCmd/Ccsds/cmd_space_packet.c|168| SPACE IS REQUIRED BEFORE AND AFTER BINARY OPERATOR
TlmCmd/Ccsds/cmd_space_packet.c|179| SPACE IS REQUIRED BEFORE AND AFTER BINARY OPERATOR

TlmCmd/Ccsds/space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/space_packet.h Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

clang-tidy(Werror)

TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'CSP_2ND_HDR_VER'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
CSP_2ND_HDR_VER
TlmCmd/Ccsds/cmd_space_packet.h:54:3: note: 'CSP_2ND_HDR_VER' declared here
} CSP_2ND_HDR_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'CSP_2ND_HDR_VER'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
CSP_2ND_HDR_VER
TlmCmd/Ccsds/cmd_space_packet.h:54:3: note: 'CSP_2ND_HDR_VER' declared here
} CSP_2ND_HDR_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|150 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID CSP_get_apid(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|158 col 40| unknown type name 'APID' [clang-diagnostic-error]
void CSP_set_apid(CmdSpacePacket* csp, APID apid);
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'CSP_2ND_HDR_VER'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
CSP_2ND_HDR_VER
TlmCmd/Ccsds/cmd_space_packet.h:54:3: note: 'CSP_2ND_HDR_VER' declared here
} CSP_2ND_HDR_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'CSP_2ND_HDR_VER'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
CSP_2ND_HDR_VER
TlmCmd/Ccsds/cmd_space_packet.h:54:3: note: 'CSP_2ND_HDR_VER' declared here
} CSP_2ND_HDR_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|150 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID CSP_get_apid(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|158 col 40| unknown type name 'APID' [clang-diagnostic-error]
void CSP_set_apid(CmdSpacePacket* csp, APID apid);
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|81 col 35| use of undeclared identifier 'SP_PRM_HDR_LEN' [clang-diagnostic-error]
return (uint16_t)(CSP_MAX_LEN - SP_PRM_HDR_LEN - CSP_SND_HDR_LEN);
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|105 col 1| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|113 col 39| unknown type name 'SP_VER'; did you mean 'TCP_VER'? [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^~~~~~
TCP_VER
TlmCmd/Ccsds/TCPacket.h:40:3: note: 'TCP_VER' declared here
} TCP_VER;
^
TlmCmd/Ccsds/cmd_space_packet.h|120 col 1| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|128 col 40| unknown type name 'SP_TYPE'; did you mean 'TCP_TYPE'? [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^~~~~~~
TCP_TYPE
TlmCmd/Ccsds/TCPacket.h:51:3: note: 'TCP_TYPE' declared here
} TCP_TYPE;
^
TlmCmd/Ccsds/cmd_space_packet.h|135 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|143 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TCP_2ND_HDR_FLAG'? [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TCP_2ND_HDR_FLAG
TlmCmd/Ccsds/TCPacket.h:62:3: note: 'TCP_2ND_HDR_FLAG' declared here
} TCP_2ND_HDR_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|165 col 1| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^
TlmCmd/Ccsds/cmd_space_packet.h|173 col 44| unknown type name 'SP_SEQ_FLAG'; did you mean 'TCP_SEQ_FLAG'? [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^~~~~~~~~~~
TCP_SEQ_FLAG
TlmCmd/Ccsds/TCPacket.h:77:3: note: 'TCP_SEQ_FLAG' declared here
} TCP_SEQ_FLAG;
^

TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.h Show resolved Hide resolved
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

clang-tidy(Werror)

TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/cmd_space_packet.c|35 col 3| void function 'CSP_set_ver' should not return void expression [clang-diagnostic-pedantic]
return SP_set_ver(CSP_CAST_TO_NON_CONSTSP(csp), ver);
^
TlmCmd/Ccsds/cmd_space_packet.c|47 col 3| void function 'CSP_set_type' should not return void expression [clang-diagnostic-pedantic]
return SP_set_type(CSP_CAST_TO_NON_CONSTSP(csp), type);
^
TlmCmd/Ccsds/cmd_space_packet.c|59 col 3| void function 'CSP_set_2nd_hdr_flag' should not return void expression [clang-diagnostic-pedantic]
return SP_set_2nd_hdr_flag(CSP_CAST_TO_NON_CONSTSP(csp), flag);
^
TlmCmd/Ccsds/cmd_space_packet.c|71 col 3| void function 'CSP_set_apid' should not return void expression [clang-diagnostic-pedantic]
return SP_set_apid(CSP_CAST_TO_NON_CONSTSP(csp), apid);
^
TlmCmd/Ccsds/cmd_space_packet.c|83 col 3| void function 'CSP_set_seq_flag' should not return void expression [clang-diagnostic-pedantic]
return SP_set_seq_flag(CSP_CAST_TO_NON_CONSTSP(csp), flag);
^
TlmCmd/Ccsds/cmd_space_packet.c|95 col 3| void function 'CSP_set_seq_count' should not return void expression [clang-diagnostic-pedantic]
return SP_set_seq_count(CSP_CAST_TO_NON_CONSTSP(csp), count);
^
TlmCmd/Ccsds/cmd_space_packet.c|107 col 3| void function 'CSP_set_packet_data_len' should not return void expression [clang-diagnostic-pedantic]
return SP_set_packet_data_len(CSP_CAST_TO_NON_CONSTSP(csp), len);
^
TlmCmd/Ccsds/cmd_space_packet.c|136 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(CSP_CAST_TO_SP(csp), &CSP_pei_2nd_hdr_ver_, &tmp);
^
TlmCmd/Ccsds/cmd_space_packet.c:11:39: note: expanded from macro 'CSP_CAST_TO_SP'
#define CSP_CAST_TO_SP(csp) ((const SpacePacket
)(csp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/cmd_space_packet.c|151 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(CSP_CAST_TO_SP(csp), &CSP_pei_cmd_type_, &tmp);
^
TlmCmd/Ccsds/cmd_space_packet.c:11:39: note: expanded from macro 'CSP_CAST_TO_SP'
#define CSP_CAST_TO_SP(csp) ((const SpacePacket
)(csp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/cmd_space_packet.c|167 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(CSP_CAST_TO_SP(csp), &CSP_pei_cmd_id_, &tmp);
^
TlmCmd/Ccsds/cmd_space_packet.c:11:39: note: expanded from macro 'CSP_CAST_TO_SP'
#define CSP_CAST_TO_SP(csp) ((const SpacePacket
)(csp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/cmd_space_packet.c|195 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(CSP_CAST_TO_SP(csp), &CSP_pei_dest_type_, &tmp);
^
TlmCmd/Ccsds/cmd_space_packet.c:11:39: note: expanded from macro 'CSP_CAST_TO_SP'
#define CSP_CAST_TO_SP(csp) ((const SpacePacket
)(csp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/cmd_space_packet.c|226 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(CSP_CAST_TO_SP(csp), &CSP_pei_exec_type_, &tmp);
^
TlmCmd/Ccsds/cmd_space_packet.c:11:39: note: expanded from macro 'CSP_CAST_TO_SP'
#define CSP_CAST_TO_SP(csp) ((const SpacePacket
)(csp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/cmd_space_packet.c|241 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(CSP_CAST_TO_SP(csp), &CSP_pei_ti_, &ti);
^
TlmCmd/Ccsds/cmd_space_packet.c:11:39: note: expanded from macro 'CSP_CAST_TO_SP'
#define CSP_CAST_TO_SP(csp) ((const SpacePacket
)(csp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/cmd_space_packet.c|257 col 3| void function 'CSP_set_packet_len' should not return void expression [clang-diagnostic-pedantic]
return SP_set_packet_len(CSP_CAST_TO_NON_CONSTSP(csp), len);
^
TlmCmd/Ccsds/cmd_space_packet.c|263 col 3| void function 'CSP_copy_packet' should not return void expression [clang-diagnostic-pedantic]
return SP_copy_packet(CSP_CAST_TO_NON_CONSTSP(dest), CSP_CAST_TO_SP(src));
^
TlmCmd/Ccsds/cmd_space_packet.c|283 col 3| implicitly declaring library function 'memcpy' with type 'void (void , const void , unsigned int)' [clang-diagnostic-implicit-function-declaration]
memcpy(CSP_get_param_head(csp), param, (size_t)len);
^
TlmCmd/Ccsds/cmd_space_packet.c:283:3: note: include the header <string.h> or explicitly provide a declaration for 'memcpy'
TlmCmd/Ccsds/cmd_space_packet.c|283 col 10| passing 'const uint8_t ' (aka 'const unsigned char ') to parameter of type 'void ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
memcpy(CSP_get_param_head(csp), param, (size_t)len);
^
TlmCmd/Ccsds/cmd_space_packet.c|287 col 21| incompatible pointer types passing 'CmdSpacePacket ' to parameter of type 'SpacePacket ' [clang-diagnostic-incompatible-pointer-types]
SP_set_packet_len(csp, (uint16_t)(SP_PRM_HDR_LEN + CSP_SND_HDR_LEN + len));
^
TlmCmd/Ccsds/space_packet.h:246:37: note: passing argument to parameter 'sp' here
void SP_set_packet_len(SpacePacket
sp, uint16_t len);
^
TlmCmd/Ccsds/tlm_space_packet.h|108 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER TSP_get_ver(const TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|116 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void TSP_set_ver(TlmSpacePacket
tsp, SP_VER ver);
^
TlmCmd/Ccsds/tlm_space_packet.h|123 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE TSP_get_type(const TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|131 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void TSP_set_type(TlmSpacePacket
tsp, SP_TYPE type);
^
TlmCmd/Ccsds/tlm_space_packet.h|138 col 1| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
SP_2ND_HDR_FLAG TSP_get_2nd_hdr_flag(const TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|146 col 48| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
void TSP_set_2nd_hdr_flag(TlmSpacePacket
tsp, SP_2ND_HDR_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|168 col 1| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
SP_SEQ_FLAG TSP_get_seq_flag(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|176 col 44| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
void TSP_set_seq_flag(TlmSpacePacket* tsp, SP_SEQ_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/cmd_space_packet.h|107 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|115 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^
TlmCmd/Ccsds/cmd_space_packet.h|122 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|130 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^
TlmCmd/Ccsds/cmd_space_packet.h|137 col 1| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|145 col 48| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.h|108 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER TSP_get_ver(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|116 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void TSP_set_ver(TlmSpacePacket* tsp, SP_VER ver);
^
TlmCmd/Ccsds/tlm_space_packet.h|123 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE TSP_get_type(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|131 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void TSP_set_type(TlmSpacePacket* tsp, SP_TYPE type);
^
TlmCmd/Ccsds/tlm_space_packet.h|138 col 1| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TSP_2ND_HDR_VER'? [clang-diagnostic-error]
SP_2ND_HDR_FLAG TSP_get_2nd_hdr_flag(const TlmSpacePacket* tsp);
^~~~~~~~~~~~~~~
TSP_2ND_HDR_VER
TlmCmd/Ccsds/tlm_space_packet.h:80:3: note: 'TSP_2ND_HDR_VER' declared here
} TSP_2ND_HDR_VER;
^
TlmCmd/Ccsds/tlm_space_packet.h|146 col 48| unknown type name 'SP_2ND_HDR_FLAG'; did you mean 'TSP_2ND_HDR_VER'? [clang-diagnostic-error]
void TSP_set_2nd_hdr_flag(TlmSpacePacket* tsp, SP_2ND_HDR_FLAG flag);
^~~~~~~~~~~~~~~
TSP_2ND_HDR_VER
TlmCmd/Ccsds/tlm_space_packet.h:80:3: note: 'TSP_2ND_HDR_VER' declared here
} TSP_2ND_HDR_VER;
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|168 col 1| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
SP_SEQ_FLAG TSP_get_seq_flag(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|176 col 44| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
void TSP_set_seq_flag(TlmSpacePacket* tsp, SP_SEQ_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/cmd_space_packet.h|107 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|115 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^
TlmCmd/Ccsds/cmd_space_packet.h|122 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|130 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^
TlmCmd/Ccsds/cmd_space_packet.h|137 col 1| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|145 col 48| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^
TlmCmd/Ccsds/cmd_space_packet.h|167 col 1| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|175 col 44| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.c|36 col 3| void function 'TSP_set_ver' should not return void expression [clang-diagnostic-pedantic]
return SP_set_ver(TSP_CAST_TO_NON_CONSTSP(tsp), ver);
^
TlmCmd/Ccsds/tlm_space_packet.c|48 col 3| void function 'TSP_set_type' should not return void expression [clang-diagnostic-pedantic]
return SP_set_type(TSP_CAST_TO_NON_CONSTSP(tsp), type);
^
TlmCmd/Ccsds/tlm_space_packet.c|60 col 3| void function 'TSP_set_2nd_hdr_flag' should not return void expression [clang-diagnostic-pedantic]
return SP_set_2nd_hdr_flag(TSP_CAST_TO_NON_CONSTSP(tsp), flag);
^
TlmCmd/Ccsds/tlm_space_packet.c|72 col 3| void function 'TSP_set_apid' should not return void expression [clang-diagnostic-pedantic]
return SP_set_apid(TSP_CAST_TO_NON_CONSTSP(tsp), apid);
^
TlmCmd/Ccsds/tlm_space_packet.c|84 col 3| void function 'TSP_set_seq_flag' should not return void expression [clang-diagnostic-pedantic]
return SP_set_seq_flag(TSP_CAST_TO_NON_CONSTSP(tsp), flag);
^
TlmCmd/Ccsds/tlm_space_packet.c|96 col 3| void function 'TSP_set_seq_count' should not return void expression [clang-diagnostic-pedantic]
return SP_set_seq_count(TSP_CAST_TO_NON_CONSTSP(tsp), count);
^
TlmCmd/Ccsds/tlm_space_packet.c|108 col 3| void function 'TSP_set_packet_data_len' should not return void expression [clang-diagnostic-pedantic]
return SP_set_packet_data_len(TSP_CAST_TO_NON_CONSTSP(tsp), len);
^
TlmCmd/Ccsds/tlm_space_packet.c|137 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_2nd_hdr_ver_, &tmp);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|152 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_board_time_, &time);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|167 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_global_time_, &time);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|182 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_ob_sn_time_, &time);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|198 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_tlm_id_, &tmp);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|213 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_dest_flags_, &flags);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|228 col 31| passing 'const SpacePacket ' to parameter of type 'SpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_dr_ptn_, &ptn);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:275:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|244 col 3| void function 'TSP_set_packet_len' should not return void expression [clang-diagnostic-pedantic]
return SP_set_packet_len(TSP_CAST_TO_NON_CONSTSP(tsp), len);
^
TlmCmd/Ccsds/tlm_space_packet.c|250 col 3| void function 'TSP_copy_packet' should not return void expression [clang-diagnostic-pedantic]
return SP_copy_packet(TSP_CAST_TO_NON_CONSTSP(dest), TSP_CAST_TO_SP(src));
^
TlmCmd/Ccsds/tlm_space_packet.c|256 col 10| returning 'const uint8_t ' (aka 'const unsigned char ') from a function with result type 'uint8_t ' (aka 'unsigned char ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
return &(tsp->packet[SP_PRM_HDR_LEN + TSP_SND_HDR_LEN]); // const_cast
^
TlmCmd/Ccsds/tlm_space_packet.c|264 col 22| passing 'const TlmSpacePacket ' to parameter of type 'TlmSpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
TSP_set_common_hdr(tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h:371:41: note: passing argument to parameter 'tsp' here
void TSP_set_common_hdr(TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.c|265 col 16| passing 'const TlmSpacePacket ' to parameter of type 'TlmSpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
TSP_set_apid(tsp, apid);
^
TlmCmd/Ccsds/tlm_space_packet.c:70:35: note: passing argument to parameter 'tsp' here
void TSP_set_apid(TlmSpacePacket
tsp, APID apid)
^
TlmCmd/Ccsds/tlm_space_packet.c|266 col 27| passing 'const TlmSpacePacket ' to parameter of type 'TlmSpacePacket ' discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
TSP_set_packet_data_len(tsp, packet_data_len);
^
TlmCmd/Ccsds/tlm_space_packet.c:106:46: note: passing argument to parameter 'tsp' here
void TSP_set_packet_data_len(TlmSpacePacket
tsp, uint16_t len)
^
TlmCmd/Ccsds/tlm_space_packet.c|288 col 3| implicitly declaring library function 'memset' with type 'void (void , int, unsigned int)' [clang-diagnostic-implicit-function-declaration]
memset(tsp->packet, 0x00, TSP_MAX_LEN);
^
TlmCmd/Ccsds/tlm_space_packet.c:288:3: note: include the header <string.h> or explicitly provide a declaration for 'memset'
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket
sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket
sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket
tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket
tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket
tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket
sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket
sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/tlm_space_packet.h|108 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER TSP_get_ver(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|116 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void TSP_set_ver(TlmSpacePacket* tsp, SP_VER ver);
^
TlmCmd/Ccsds/tlm_space_packet.h|123 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE TSP_get_type(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|131 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void TSP_set_type(TlmSpacePacket* tsp, SP_TYPE type);
^
TlmCmd/Ccsds/tlm_space_packet.h|138 col 1| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
SP_2ND_HDR_FLAG TSP_get_2nd_hdr_flag(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|146 col 48| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
void TSP_set_2nd_hdr_flag(TlmSpacePacket* tsp, SP_2ND_HDR_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|168 col 1| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
SP_SEQ_FLAG TSP_get_seq_flag(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|176 col 44| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
void TSP_set_seq_flag(TlmSpacePacket* tsp, SP_SEQ_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/cmd_space_packet.h|107 col 1| unknown type name 'SP_VER' [clang-diagnostic-error]
SP_VER CSP_get_ver(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|115 col 39| unknown type name 'SP_VER' [clang-diagnostic-error]
void CSP_set_ver(CmdSpacePacket* csp, SP_VER ver);
^
TlmCmd/Ccsds/cmd_space_packet.h|122 col 1| unknown type name 'SP_TYPE' [clang-diagnostic-error]
SP_TYPE CSP_get_type(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|130 col 40| unknown type name 'SP_TYPE' [clang-diagnostic-error]
void CSP_set_type(CmdSpacePacket* csp, SP_TYPE type);
^
TlmCmd/Ccsds/cmd_space_packet.h|137 col 1| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
SP_2ND_HDR_FLAG CSP_get_2nd_hdr_flag(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|145 col 48| unknown type name 'SP_2ND_HDR_FLAG' [clang-diagnostic-error]
void CSP_set_2nd_hdr_flag(CmdSpacePacket* csp, SP_2ND_HDR_FLAG flag);
^
TlmCmd/Ccsds/cmd_space_packet.h|152 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID CSP_get_apid(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|160 col 40| unknown type name 'APID' [clang-diagnostic-error]
void CSP_set_apid(CmdSpacePacket* csp, APID apid);
^
TlmCmd/Ccsds/cmd_space_packet.h|167 col 1| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
SP_SEQ_FLAG CSP_get_seq_flag(const CmdSpacePacket* csp);
^
TlmCmd/Ccsds/cmd_space_packet.h|175 col 44| unknown type name 'SP_SEQ_FLAG' [clang-diagnostic-error]
void CSP_set_seq_flag(CmdSpacePacket* csp, SP_SEQ_FLAG flag);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|19 col 15| conflicting types for 'CTP_get_dest_flags' [clang-diagnostic-error]
CTP_DEST_FLAG CTP_get_dest_flags(const CommonTlmPacket* packet)
^
TlmCmd/Ccsds/../common_tlm_packet.h:55:18: note: previous declaration is here
ctp_dest_flags_t CTP_get_dest_flags(const CommonTlmPacket* packet);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^
TlmCmd/Ccsds/space_packet.h|171 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID SP_get_apid(const SpacePacket* sp);
^
TlmCmd/Ccsds/space_packet.h|179 col 35| unknown type name 'APID' [clang-diagnostic-error]
void SP_set_apid(SpacePacket* sp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|153 col 1| unknown type name 'APID' [clang-diagnostic-error]
APID TSP_get_apid(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|161 col 40| unknown type name 'APID' [clang-diagnostic-error]
void TSP_set_apid(TlmSpacePacket* tsp, APID apid);
^
TlmCmd/Ccsds/tlm_space_packet.h|295 col 1| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
ctp_dest_flags_t TSP_get_dest_flgas(const TlmSpacePacket* tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h|303 col 46| unknown type name 'ctp_dest_flags_t' [clang-diagnostic-error]
void TSP_set_dest_flgas(TlmSpacePacket* tsp, ctp_dest_flags_t flags);
^
TlmCmd/Ccsds/tlm_space_packet.h|364 col 55| unknown type name 'APID' [clang-diagnostic-error]
void TSP_setup_primary_hdr(const TlmSpacePacket* tsp, APID apid, uint16_t packet_data_len);
^

TlmCmd/Ccsds/space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.h Outdated Show resolved Hide resolved
TlmCmd/Ccsds/space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/space_packet.h Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.h Show resolved Hide resolved
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

clang-tidy(Werror)

TlmCmd/Ccsds/tlm_space_packet.c|84 col 3| void function 'TSP_set_seq_flag' should not return void expression [clang-diagnostic-pedantic]
return SP_set_seq_flag(TSP_CAST_TO_NON_CONSTSP(tsp), flag);
^
TlmCmd/Ccsds/tlm_space_packet.c|96 col 3| void function 'TSP_set_seq_count' should not return void expression [clang-diagnostic-pedantic]
return SP_set_seq_count(TSP_CAST_TO_NON_CONSTSP(tsp), count);
^
TlmCmd/Ccsds/tlm_space_packet.c|108 col 3| void function 'TSP_set_packet_data_len' should not return void expression [clang-diagnostic-pedantic]
return SP_set_packet_data_len(TSP_CAST_TO_NON_CONSTSP(tsp), len);
^
TlmCmd/Ccsds/tlm_space_packet.c|137 col 31| passing 'const SpacePacket *' (aka 'const struct SpacePacket *') to parameter of type 'SpacePacket ' (aka 'struct SpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_2nd_hdr_ver_, &tmp);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:274:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|152 col 31| passing 'const SpacePacket *' (aka 'const struct SpacePacket *') to parameter of type 'SpacePacket ' (aka 'struct SpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_board_time_, &time);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:274:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|167 col 31| passing 'const SpacePacket *' (aka 'const struct SpacePacket *') to parameter of type 'SpacePacket ' (aka 'struct SpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_global_time_, &time);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:274:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|182 col 31| passing 'const SpacePacket *' (aka 'const struct SpacePacket *') to parameter of type 'SpacePacket ' (aka 'struct SpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_ob_sn_time_, &time);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:274:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|198 col 31| passing 'const SpacePacket *' (aka 'const struct SpacePacket *') to parameter of type 'SpacePacket ' (aka 'struct SpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_tlm_id_, &tmp);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:274:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|213 col 31| passing 'const SpacePacket *' (aka 'const struct SpacePacket *') to parameter of type 'SpacePacket ' (aka 'struct SpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_dest_flags_, &flags);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:274:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|228 col 31| passing 'const SpacePacket *' (aka 'const struct SpacePacket *') to parameter of type 'SpacePacket ' (aka 'struct SpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
SP_insert_param_from_packet(TSP_CAST_TO_SP(tsp), &TSP_pei_dr_ptn_, &ptn);
^
TlmCmd/Ccsds/tlm_space_packet.c:11:39: note: expanded from macro 'TSP_CAST_TO_SP'
#define TSP_CAST_TO_SP(tsp) ((const SpacePacket
)(tsp)) //!< SPへのキャスト. SPのほうが広いので,これは可能
^
TlmCmd/Ccsds/space_packet.h:274:47: note: passing argument to parameter 'sp' here
void SP_insert_param_from_packet(SpacePacket
sp,
^
TlmCmd/Ccsds/tlm_space_packet.c|244 col 3| void function 'TSP_set_packet_len' should not return void expression [clang-diagnostic-pedantic]
return SP_set_packet_len(TSP_CAST_TO_NON_CONSTSP(tsp), len);
^
TlmCmd/Ccsds/tlm_space_packet.c|250 col 3| void function 'TSP_copy_packet' should not return void expression [clang-diagnostic-pedantic]
return SP_copy_packet(TSP_CAST_TO_NON_CONSTSP(dest), TSP_CAST_TO_SP(src));
^
TlmCmd/Ccsds/tlm_space_packet.c|256 col 10| returning 'const uint8_t *' (aka 'const unsigned char *') from a function with result type 'uint8_t *' (aka 'unsigned char *') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
return &(tsp->packet[SP_PRM_HDR_LEN + TSP_SND_HDR_LEN]); // const_cast
^
TlmCmd/Ccsds/tlm_space_packet.c|264 col 22| passing 'const TlmSpacePacket *' (aka 'const struct TlmSpacePacket *') to parameter of type 'TlmSpacePacket *' (aka 'struct TlmSpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
TSP_set_common_hdr(tsp);
^
TlmCmd/Ccsds/tlm_space_packet.h:370:41: note: passing argument to parameter 'tsp' here
void TSP_set_common_hdr(TlmSpacePacket
tsp);
^
TlmCmd/Ccsds/tlm_space_packet.c|265 col 16| passing 'const TlmSpacePacket *' (aka 'const struct TlmSpacePacket *') to parameter of type 'TlmSpacePacket *' (aka 'struct TlmSpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
TSP_set_apid(tsp, apid);
^
TlmCmd/Ccsds/tlm_space_packet.c:70:35: note: passing argument to parameter 'tsp' here
void TSP_set_apid(TlmSpacePacket
tsp, APID apid)
^
TlmCmd/Ccsds/tlm_space_packet.c|266 col 27| passing 'const TlmSpacePacket *' (aka 'const struct TlmSpacePacket *') to parameter of type 'TlmSpacePacket *' (aka 'struct TlmSpacePacket ') discards qualifiers [clang-diagnostic-incompatible-pointer-types-discards-qualifiers]
TSP_set_packet_data_len(tsp, packet_data_len);
^
TlmCmd/Ccsds/tlm_space_packet.c:106:46: note: passing argument to parameter 'tsp' here
void TSP_set_packet_data_len(TlmSpacePacket
tsp, uint16_t len)
^
TlmCmd/Ccsds/tlm_space_packet.c|288 col 3| implicitly declaring library function 'memset' with type 'void (void , int, unsigned int)' [clang-diagnostic-implicit-function-declaration]
memset(tsp->packet, 0x00, TSP_MAX_LEN);
^
TlmCmd/Ccsds/tlm_space_packet.c:288:3: note: include the header <string.h> or explicitly provide a declaration for 'memset'
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|14 col 37| use of undeclared identifier 'CSP_MAX_LEN' [clang-diagnostic-error]
if ( CCP_get_packet_len(packet) > CCP_MAX_LEN ) return 0;
^
Examples/minimum_user_for_s2e/src/src_user/Settings/TlmCmd/common_cmd_packet_define.h:13:22: note: expanded from macro 'CCP_MAX_LEN'
#define CCP_MAX_LEN (CSP_MAX_LEN)
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|21 col 19| implicit declaration of function 'CSP_get_ti' [clang-diagnostic-implicit-function-declaration]
return (cycle_t)CSP_get_ti(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|26 col 3| implicit declaration of function 'CSP_set_ti' [clang-diagnostic-implicit-function-declaration]
CSP_set_ti(packet, (uint32_t)ti);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|41 col 10| implicit declaration of function 'CSP_get_exec_type' [clang-diagnostic-implicit-function-declaration]
return CSP_get_exec_type(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|46 col 3| implicit declaration of function 'CSP_set_exec_type' [clang-diagnostic-implicit-function-declaration]
CSP_set_exec_type(packet, type);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|51 col 10| implicit declaration of function 'CSP_get_dest_type' [clang-diagnostic-implicit-function-declaration]
return CSP_get_dest_type(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|56 col 3| implicit declaration of function 'CSP_set_dest_type' [clang-diagnostic-implicit-function-declaration]
CSP_set_dest_type(packet, type);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|61 col 10| implicit declaration of function 'CSP_get_cmd_id' [clang-diagnostic-implicit-function-declaration]
return CSP_get_cmd_id(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|66 col 3| implicit declaration of function 'CSP_set_cmd_id' [clang-diagnostic-implicit-function-declaration]
CSP_set_cmd_id(packet, id);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|71 col 10| implicit declaration of function 'CSP_get_packet_len' [clang-diagnostic-implicit-function-declaration]
return CSP_get_packet_len(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|76 col 10| implicit declaration of function 'CSP_get_param_len' [clang-diagnostic-implicit-function-declaration]
return CSP_get_param_len(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|81 col 21| use of undeclared identifier 'CSP_MAX_LEN' [clang-diagnostic-error]
return (uint16_t)(CSP_MAX_LEN - SP_PRM_HDR_LEN - CSP_SND_HDR_LEN);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|81 col 35| use of undeclared identifier 'SP_PRM_HDR_LEN' [clang-diagnostic-error]
return (uint16_t)(CSP_MAX_LEN - SP_PRM_HDR_LEN - CSP_SND_HDR_LEN);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|81 col 52| use of undeclared identifier 'CSP_SND_HDR_LEN' [clang-diagnostic-error]
return (uint16_t)(CSP_MAX_LEN - SP_PRM_HDR_LEN - CSP_SND_HDR_LEN);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|86 col 10| implicit declaration of function 'CSP_get_param_head' [clang-diagnostic-implicit-function-declaration]
return CSP_get_param_head(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|86 col 10| incompatible integer to pointer conversion returning 'int' from a function with result type 'const uint8_t ' (aka 'const unsigned char ') [clang-diagnostic-int-conversion]
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|91 col 3| implicit declaration of function 'CSP_set_param' [clang-diagnostic-implicit-function-declaration]
CSP_set_param(packet, param, len);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_cmd_packet.c|96 col 3| implicit declaration of function 'CSP_set_common_hdr' [clang-diagnostic-implicit-function-declaration]
CSP_set_common_hdr(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|15 col 38| use of undeclared identifier 'SP_MAX_LEN' [clang-diagnostic-error]
if ( CTCP_get_packet_len(packet) > CTCP_MAX_LEN ) return 0;
^
Examples/minimum_user_for_s2e/src/src_user/Settings/TlmCmd/common_tlm_cmd_packet_define.h:13:23: note: expanded from macro 'CTCP_MAX_LEN'
#define CTCP_MAX_LEN (SP_MAX_LEN)
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|22 col 11| implicit declaration of function 'SP_get_type' [clang-diagnostic-implicit-function-declaration]
switch (SP_get_type(packet))
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|24 col 8| use of undeclared identifier 'SP_TYPE_TLM' [clang-diagnostic-error]
case SP_TYPE_TLM:
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|27 col 8| use of undeclared identifier 'SP_TYPE_CMD' [clang-diagnostic-error]
case SP_TYPE_CMD:
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|37 col 10| implicit declaration of function 'SP_get_packet_len' [clang-diagnostic-implicit-function-declaration]
return SP_get_packet_len(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|42 col 10| implicit declaration of function 'SP_get_apid' [clang-diagnostic-implicit-function-declaration]
return SP_get_apid(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|47 col 3| implicit declaration of function 'SP_set_apid' [clang-diagnostic-implicit-function-declaration]
SP_set_apid(packet, apid);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_cmd_packet.c|52 col 3| implicit declaration of function 'SP_copy_packet' [clang-diagnostic-implicit-function-declaration]
SP_copy_packet(dest, src);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|14 col 37| use of undeclared identifier 'TSP_MAX_LEN' [clang-diagnostic-error]
if ( CTP_get_packet_len(packet) > CTP_MAX_LEN ) return 0;
^
Examples/minimum_user_for_s2e/src/src_user/Settings/TlmCmd/common_tlm_packet_define.h:13:22: note: expanded from macro 'CTP_MAX_LEN'
#define CTP_MAX_LEN (TSP_MAX_LEN)
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|19 col 15| conflicting types for 'CTP_get_dest_flags' [clang-diagnostic-error]
CTP_DEST_FLAG CTP_get_dest_flags(const CommonTlmPacket
packet)
^
TlmCmd/common_tlm_packet.h:55:18: note: previous declaration is here
ctp_dest_flags_t CTP_get_dest_flags(const CommonTlmPacket
packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|21 col 10| implicit declaration of function 'TSP_get_dest_flgas' [clang-diagnostic-implicit-function-declaration]
return TSP_get_dest_flgas(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|24 col 6| conflicting types for 'CTP_set_dest_flags' [clang-diagnostic-error]
void CTP_set_dest_flags(CommonTlmPacket
packet, CTP_DEST_FLAG flags)
^
TlmCmd/common_tlm_packet.h:63:6: note: previous declaration is here
void CTP_set_dest_flags(CommonTlmPacket
packet, ctp_dest_flags_t flags);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|26 col 3| implicit declaration of function 'TSP_set_dest_flgas' [clang-diagnostic-implicit-function-declaration]
TSP_set_dest_flgas(packet, flags);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|31 col 10| implicit declaration of function 'TSP_get_packet_len' [clang-diagnostic-implicit-function-declaration]
return TSP_get_packet_len(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|36 col 10| implicit declaration of function 'TSP_get_user_data_head' [clang-diagnostic-implicit-function-declaration]
return TSP_get_user_data_head(packet);
^
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/common_tlm_packet.c|36 col 10| incompatible integer to pointer conversion returning 'int' from a function with result type 'uint8_t *' (aka 'unsigned char *') [clang-diagnostic-int-conversion]

TlmCmd/Ccsds/cmd_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/space_packet.c Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.c Outdated Show resolved Hide resolved
@meltingrabbit meltingrabbit force-pushed the feature/space_packet branch 2 times, most recently from 63cbf03 to 9ed2a8d Compare January 28, 2022 05:03
TlmCmd/Ccsds/tlm_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/tlm_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Outdated Show resolved Hide resolved
TlmCmd/Ccsds/cmd_space_packet.c Outdated Show resolved Hide resolved
@meltingrabbit meltingrabbit force-pushed the feature/space_packet branch 3 times, most recently from 99f5342 to 0d53cb6 Compare January 28, 2022 06:45
@meltingrabbit
Copy link
Collaborator Author

テレメなおして,テストも通りました.

tlm idのbit posを旧TCP headerにあわせたので,既存のwingsでもそのまま動いたね(categoryが変わってるので,DR再生はバグりそうだけど.ここにはDRないので)

@meltingrabbit meltingrabbit changed the title C2A内のpacket標準としてCCSDS Space Packet を実装する C2A内のpacket標準としてCCSDS Space Packet を実装する.そして,Common Packet を抽象化する. Jan 28, 2022
Copy link
Contributor

@yngyu yngyu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

遅くなってすいません、approve です

@meltingrabbit
Copy link
Collaborator Author

ありがと~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request priority::high priorityg high WINGS
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants