-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from arkedge/feature/rename-driver2
Rename Driver -> Component Driver
- Loading branch information
Showing
28 changed files
with
1,181 additions
and
1,141 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
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,92 @@ | ||
/** | ||
* @file | ||
* @brief コンポ間通信などで標準的に使う ネットワーク層 の Common Tlm Cmd Packet (概ね Space Packet) | ||
* @note ここでは,データリンク層は CCSDS ではなく EB90 Frame を使うことを想定 (TODO: 今後拡張予定) | ||
* @note データリンク層は CDS_StreamConfig.data_link_layer_ で規定する | ||
* @note packet 構造 などは tlm_cmd/common_tlm_cmd_packet.h を参照のこと | ||
*/ | ||
#ifndef COMMON_TLM_CMD_PACKET_FOR_DRIVER_SUPER_H_ | ||
#define COMMON_TLM_CMD_PACKET_FOR_DRIVER_SUPER_H_ | ||
|
||
#include <stdint.h> | ||
#include "driver_super.h" | ||
#include "../tlm_cmd/common_tlm_cmd_packet.h" | ||
|
||
/** | ||
* @brief CommonTlmCmdPacket を受信データからコピーして取得する | ||
* @note フレームが確定しているときに呼び出すこと | ||
* @param[in] p_stream_config: ComponentDriverSuper 構造体の CDS_StreamConfig | ||
* @param[out] received_packet: 抽出したパケット | ||
* @retval CDS_ERR_CODE_OK: 正常終了 | ||
* @retval CDS_ERR_CODE_ERR: パケット長が異常など,エラーでコピーできない | ||
*/ | ||
CDS_ERR_CODE CTCP_get_ctcp_from_cdssc(const CDS_StreamConfig* p_stream_config, CommonTlmCmdPacket* received_packet); | ||
|
||
/** | ||
* @brief CommonTlmPacket を受信データからコピーして取得する | ||
* @note フレームが確定しているときに呼び出すこと | ||
* @param[in] p_stream_config: ComponentDriverSuper 構造体の CDS_StreamConfig | ||
* @param[out] received_packet: 抽出したパケット | ||
* @retval CDS_ERR_CODE_OK: 正常終了 | ||
* @retval CDS_ERR_CODE_ERR: パケット長が異常など,エラーでコピーできない | ||
*/ | ||
CDS_ERR_CODE CTP_get_ctp_from_cdssc(const CDS_StreamConfig* p_stream_config, CommonTlmPacket* received_packet); | ||
|
||
/** | ||
* @brief CommonCmdPacket を受信データからコピーして取得する | ||
* @note フレームが確定しているときに呼び出すこと | ||
* @param[in] p_stream_config: ComponentDriverSuper 構造体の CDS_StreamConfig | ||
* @param[out] received_packet: 抽出したパケット | ||
* @retval CDS_ERR_CODE_OK: 正常終了 | ||
* @retval CDS_ERR_CODE_ERR: パケット長が異常など,エラーでコピーできない | ||
*/ | ||
CDS_ERR_CODE CCP_get_ccp_from_cdssc(const CDS_StreamConfig* p_stream_config, CommonCmdPacket* received_packet); | ||
|
||
/** | ||
* @brief C2A 間通信など, CTCP をコンポ間通信に用いるとき,CDS_init で渡す初期化関数内部用の Init Util | ||
* | ||
* これを呼び出すと,まるっと DSSC の初期設定ができる. | ||
* @note CDSSC_enable は ComponentDriver 側でやること | ||
* @param[in] p_stream_config: ComponentDriverSuper 構造体の CDS_StreamConfig | ||
* @param[in] tx_frame_buffer: コマンドフレーム(送信フレーム)のバッファ | ||
* @param[in] tx_frame_buffer_size: バッファサイズ | ||
* @param[in] data_analyzer: CDSSC_set_data_analyzer で渡すための data_analyzer | ||
* @retval CDS_ERR_CODE_OK: 正常終了 | ||
* @retval CDS_ERR_CODE_ERR: フレームバッファのサイズ不足などのエラー | ||
*/ | ||
CDS_ERR_CODE CTCP_init_cdssc(CDS_StreamConfig* p_stream_config, | ||
uint8_t* tx_frame_buffer, | ||
int16_t tx_frame_buffer_size, | ||
CDS_ERR_CODE (*data_analyzer)(CDS_StreamConfig* p_stream_config, void* p_driver)); | ||
|
||
/** | ||
* @brief C2A 間通信など, CTCP をコンポ間通信に用いるときの tx_frame のセット | ||
* @param[in] p_stream_config: ComponentDriverSuper 構造体の CDS_StreamConfig | ||
* @param[in] send_packet: 送信するパケット | ||
* @retval CDS_ERR_CODE_OK: 正常終了 | ||
* @retval CDS_ERR_CODE_ERR: DSSC 内部の設定不足などのエラー | ||
*/ | ||
CDS_ERR_CODE CTCP_set_tx_frame_to_cdssc(CDS_StreamConfig* p_stream_config, | ||
const CommonTlmCmdPacket* send_packet); | ||
|
||
/** | ||
* @brief C2A 間通信など, CTP をコンポ間通信に用いるときの tx_frame のセット | ||
* @param[in] p_stream_config: ComponentDriverSuper 構造体の CDS_StreamConfig | ||
* @param[in] send_packet: 送信するパケット | ||
* @retval CDS_ERR_CODE_OK: 正常終了 | ||
* @retval CDS_ERR_CODE_ERR: DSSC 内部の設定不足などのエラー | ||
*/ | ||
CDS_ERR_CODE CTP_set_tx_frame_to_cdssc(CDS_StreamConfig* p_stream_config, | ||
const CommonTlmPacket* send_packet); | ||
|
||
/** | ||
* @brief C2A 間通信など, CCP をコンポ間通信に用いるときの tx_frame のセット | ||
* @param[in] p_stream_config: ComponentDriverSuper 構造体の CDS_StreamConfig | ||
* @param[in] send_packet: 送信するパケット | ||
* @retval CDS_ERR_CODE_OK: 正常終了 | ||
* @retval CDS_ERR_CODE_ERR: DSSC 内部の設定不足などのエラー | ||
*/ | ||
CDS_ERR_CODE CCP_set_tx_frame_to_cdssc(CDS_StreamConfig* p_stream_config, | ||
const CommonCmdPacket* send_packet); | ||
|
||
#endif |
2 changes: 1 addition & 1 deletion
2
driver/data_link_layer_definition.h → ...onent_driver/data_link_layer_definition.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
Oops, something went wrong.