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.
split task dispatcher Cmd declaration into task_dispatcher_cmd.h
- Loading branch information
Showing
2 changed files
with
11 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#ifndef TASK_DISPATCHER_CMD_H_ | ||
#define TASK_DISPATCHER_CMD_H_ | ||
|
||
#include "../../TlmCmd/common_cmd_packet.h" | ||
|
||
/** | ||
* @brief 指定したブロックコマンドを、次にタスクリストに展開するものとして登録するコマンド | ||
*/ | ||
CCP_CmdRet Cmd_TDSP_SET_TASK_LIST(const CommonCmdPacket* packet); | ||
|
||
#endif // TASK_DISPATCHER_CMD_H_ |