generated from ut-issl/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a82d13a
commit eafb23c
Showing
10 changed files
with
84 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,5 +27,4 @@ typedef enum | |
APID_UNKNOWN | ||
} APID; | ||
|
||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
Examples/minimum_user_for_s2e/src/src_user/Settings/TlmCmd/Ccsds/space_packet_len_params.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* @file | ||
* @brief CmdSpacePacket のユーザー設定 | ||
*/ | ||
#ifndef SPACE_PACKET_LEN_PARAMS_H_ | ||
#define SPACE_PACKET_LEN_PARAMS_H_ | ||
|
||
#undef TSP_MAX_LEN | ||
#undef CSP_MAX_LEN | ||
|
||
#define TSP_MAX_LEN (432) | ||
#define CSP_MAX_LEN (128) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* @file | ||
* @brief CCSDS で規定される Space Packet のパケット長情報のヘッダ | ||
* @note space_packet.h と tlm_space_packet.h, cmd_space_packet.h の相互 include 回避のため,分離した | ||
*/ | ||
#ifndef SPACE_PACKET_LEN_H_ | ||
#define SPACE_PACKET_LEN_H_ | ||
|
||
#define TSP_MAX_LEN (432) //!< TlmSpacePacket の最大パケット長.VCDU 分割しないならこれが最大値 | ||
#define CSP_MAX_LEN (128) //!< CmdSpacePacket の最大パケット長.値は適当においている | ||
|
||
// TSP_MAX_LEN, CSP_MAX_LEN を再定義 | ||
#include <src_user/Settings/TlmCmd/Ccsds/space_packet_len_params.h> | ||
|
||
#if TSP_MAX_LEN > CSP_MAX_LEN | ||
#define SP_MAX_LEN TSP_MAX_LEN | ||
#else | ||
#define SP_MAX_LEN CSP_MAX_LEN | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters