Skip to content

Commit

Permalink
add space_packet file
Browse files Browse the repository at this point in the history
  • Loading branch information
meltingrabbit committed Jan 25, 2022
1 parent 46bb230 commit bf43536
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions TlmCmd/Ccsds/space_packet.c
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
16 changes: 16 additions & 0 deletions TlmCmd/Ccsds/space_packet.h
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

0 comments on commit bf43536

Please sign in to comment.