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.
Merge pull request #597 from ut-issl/feature/update_tlm_mgr_for_new_tg
Tlm Manager の 新 GENERATE_TLM 対応と,リファクタリング
- Loading branch information
Showing
17 changed files
with
3,725 additions
and
1,638 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
12 changes: 12 additions & 0 deletions
12
Examples/minimum_user/src/src_user/Settings/Applications/telemetry_manager_define.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,12 @@ | ||
/** | ||
* @file | ||
* @brief Telemetry Manager の各種定義 | ||
*/ | ||
#ifndef TELEMETRY_MANAGER_DEFINE_H_ | ||
#define TELEMETRY_MANAGER_DEFINE_H_ | ||
|
||
// 将来的に DR は C2A Core App に移植される予定 | ||
// DR 再生コマンドは Cmd_DR_REPLAY_TLM を仮定 | ||
// #define TLM_MGR_ENABLE_DR_REPLAY_TLM //!< Telemetry Manager にて Cmd_DR_REPLAY_TLM を有効にするかどうか | ||
|
||
#endif |
30 changes: 30 additions & 0 deletions
30
Examples/minimum_user/src/src_user/Settings/Applications/telemetry_manager_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,30 @@ | ||
/** | ||
* @file | ||
* @brief Telemetry Manager のパラメタのオーバーライド用ヘッダー | ||
*/ | ||
#ifndef TELEMETRY_MANAGER_PARAMS_H_ | ||
#define TELEMETRY_MANAGER_PARAMS_H_ | ||
|
||
#undef TLM_MGR_BC_ROLE_AT_BC_0 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_1 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_2 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_3 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_4 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_5 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_6 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_7 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_8 | ||
#undef TLM_MGR_BC_ROLE_AT_BC_9 | ||
|
||
#define TLM_MGR_BC_ROLE_AT_BC_0 (TLM_MGR_BC_ROLE_HK_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_1 (TLM_MGR_BC_ROLE_HIGH_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_2 (TLM_MGR_BC_ROLE_HIGH_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_3 (TLM_MGR_BC_ROLE_HIGH_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_4 (TLM_MGR_BC_ROLE_LOW_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_5 (TLM_MGR_BC_ROLE_HIGH_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_6 (TLM_MGR_BC_ROLE_HIGH_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_7 (TLM_MGR_BC_ROLE_HIGH_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_8 (TLM_MGR_BC_ROLE_HIGH_FREQ_TLM) | ||
#define TLM_MGR_BC_ROLE_AT_BC_9 (TLM_MGR_BC_ROLE_LOW_FREQ_TLM) | ||
|
||
#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
Oops, something went wrong.