Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
meltingrabbit committed Jul 20, 2023
1 parent caa41a6 commit 16e3021
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/**
* @file
* @brief Command Dispatcher Manager のパラメタのオーバーライド用ヘッダー
*/
#ifndef COMMAND_DISPATCHER_MANAGER_PARAMS_H_
#define COMMAND_DISPATCHER_MANAGER_PARAMS_H_

// Core のデフォルト設定をそのまま使う

#endif
3 changes: 2 additions & 1 deletion TlmCmd/command_dispatcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
#include "command_dispatcher.h"
#include "command_dispatcher_manager.h"
#include <string.h>
#include "../System/TimeManager/time_manager.h"
#include "../System/EventManager/event_logger.h"
#include "packet_handler.h"
Expand Down Expand Up @@ -34,7 +35,7 @@ typedef enum
static void CDIS_clear_exec_info_(CDIS_ExecInfo* exec_info);


RESULT CDIS_init(CommandDispatcher* cdis, PacketList* pl);
RESULT CDIS_init(CommandDispatcher* cdis, PacketList* pl)
{
static uint8_t is_first_call_ = 1;
static uint8_t cdis_overflow_counter_ = 0;
Expand Down
2 changes: 1 addition & 1 deletion TlmCmd/command_dispatcher_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static CommandDispatcherManager command_dispatcher_manager_;
const CommandDispatcherManager* const command_dispatcher_manager = &command_dispatcher_manager_;


static void CDIS_MGR_initialize(void)
void CDIS_MGR_initialize(void)
{
uint8_t idx;
memset(&command_dispatcher_manager_, 0x00, sizeof(command_dispatcher_manager_));
Expand Down

0 comments on commit 16e3021

Please sign in to comment.