Skip to content

Commit

Permalink
fix include path
Browse files Browse the repository at this point in the history
  • Loading branch information
meltingrabbit committed Mar 29, 2024
1 parent ae2b40d commit d9d8071
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tlm_cmd/common_packet/common_cmd_packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef COMMON_CMD_PACKET_H_
#define COMMON_CMD_PACKET_H_

#include "../system/time_manager/obc_time.h"
#include "../../system/time_manager/obc_time.h"
#include <src_user/tlm_cmd/command_definitions.h>

// ここで CCP_DEST_TYPE を定義する
Expand Down
4 changes: 2 additions & 2 deletions tlm_cmd/common_packet/common_cmd_packet_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* @brief CCP の汎用 Utility
*/
#include "common_cmd_packet_util.h"
#include "command_analyze.h"
#include "../library/endian.h"
#include "../command_analyze.h"
#include "../../library/endian.h"
#include <stddef.h> // for NULL
#include <string.h>

Expand Down
6 changes: 3 additions & 3 deletions tlm_cmd/common_packet/common_cmd_packet_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#define COMMON_CMD_PACKET_UTIL_H_

#include "common_cmd_packet.h"
#include "packet_handler.h"
#include "../applications/timeline_command_dispatcher_id_define.h"
#include "block_command_table.h" // for bct_id
#include "../packet_handler.h"
#include "../../applications/timeline_command_dispatcher_id_define.h"
#include "../block_command_table.h" // for bct_id
#include <src_user/applications/app_registry.h>

/**
Expand Down
2 changes: 1 addition & 1 deletion tlm_cmd/common_packet/common_tlm_packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef COMMON_TLM_PACKET_H_
#define COMMON_TLM_PACKET_H_

#include "../system/time_manager/obc_time.h"
#include "../../system/time_manager/obc_time.h"
#include <src_user/tlm_cmd/telemetry_definitions.h>

// ここで, CTP_APID_TLM_FROM_ME, CTP_MAX_LEN, CommonTlmPacket として使うパケット型を指定する
Expand Down

0 comments on commit d9d8071

Please sign in to comment.