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
46bb230
commit bf43536
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma section REPRO | ||
/** | ||
* @file | ||
* @brief CCSDS で規定される Space Packet の実装 | ||
* @note 詳細は space_packet.h を参照 | ||
*/ | ||
|
||
#include "space_packet.h" | ||
|
||
|
||
#pragma section |
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,16 @@ | ||
/** | ||
* @file | ||
* @brief CCSDS で規定される Space Packet の実装 | ||
* @note 資料: https://sma.jaxa.jp/TechDoc/Docs/JAXA-JERG-2-403.pdf | ||
* @note C2A においては, CommonHogePacket の実体として,以下のように Space Packet を標準とする | ||
* CommonTlmCmdPacket -> SpacePacket | ||
* CommonTlmPacket -> TlmSpacePacket | ||
* CommonCmdPacket -> CmdSpacePacket | ||
* @note Packet Secondary Header は C2A 独自定義. いくつかのバージョンを用意している | ||
* @note /Docs/Core/communication.md などを参照 | ||
*/ | ||
#ifndef SPACE_PACKET_H_ | ||
#define SPACE_PACKET_H_ | ||
|
||
|
||
#endif |