Skip to content

Commit

Permalink
split task dispatcher Cmd declaration into task_dispatcher_cmd.h
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Jun 7, 2023
1 parent 81a0ccd commit 2b84af7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
6 changes: 0 additions & 6 deletions System/TaskManager/task_dispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#ifndef TASK_DISPATCHER_H_
#define TASK_DISPATCHER_H_

#include "../../TlmCmd/block_command_table.h"
#include "../../TlmCmd/command_dispatcher.h"
#include "../ApplicationManager/app_info.h"

Expand Down Expand Up @@ -71,11 +70,6 @@ void TDSP_execute_pl_as_task_list(void);
*/
void TDSP_resync_internal_counter(void);

/**
* @brief 指定したブロックコマンドを、次にタスクリストに展開するものとして登録するコマンド
*/
CCP_CmdRet Cmd_TDSP_SET_TASK_LIST(const CommonCmdPacket* packet);

// debug_apps にあるべき & 今はつわかないので無効化
#if 0
AppInfo TDSP_print_tdsp_status(void);
Expand Down
11 changes: 11 additions & 0 deletions System/TaskManager/task_dispatcher_cmd.h
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_

0 comments on commit 2b84af7

Please sign in to comment.