Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split task dispatcher cmd header #586

Open
wants to merge 2 commits into
base: feature/split-time-manager-cmd-header
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Examples/2nd_obc_user/src/src_user/TlmCmd/command_source.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <src_core/System/TimeManager/time_manager_cmd.h>
#include <src_core/System/ModeManager/mode_manager.h>
#include <src_core/System/ApplicationManager/app_manager.h>
#include <src_core/System/TaskManager/task_dispatcher.h>
#include <src_core/System/TaskManager/task_dispatcher_cmd.h>
#include <src_core/System/WatchdogTimer/watchdog_timer.h>
#include <src_core/TlmCmd/block_command_executor.h>
#include <src_user/TlmCmd/block_command_user_settings.h>
Expand Down
2 changes: 1 addition & 1 deletion Examples/minimum_user/src/src_user/TlmCmd/command_source.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <src_core/System/TimeManager/time_manager_cmd.h>
#include <src_core/System/ModeManager/mode_manager.h>
#include <src_core/System/ApplicationManager/app_manager.h>
#include <src_core/System/TaskManager/task_dispatcher.h>
#include <src_core/System/TaskManager/task_dispatcher_cmd.h>
#include <src_core/System/WatchdogTimer/watchdog_timer.h>
#include <src_core/TlmCmd/block_command_executor.h>
#include <src_user/TlmCmd/block_command_user_settings.h>
Expand Down
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_