Skip to content

Commit

Permalink
apply arkedge/c2a-core v4 rename TlmCmd -> tlm_cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Sep 5, 2023
1 parent e71c291 commit 98388c8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions my_mod/cmd_def.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def GenerateCmdDef(settings, sgc_db):
output_file_path = settings["path_to_src"] + r"src_user/TlmCmd/"
output_file_path = settings["path_to_src"] + r"src_user/tlm_cmd/"
output_file_name_base = "command_definitions"

DATA_SART_ROW = 3
Expand Down Expand Up @@ -97,7 +97,7 @@ def GenerateCmdDef(settings, sgc_db):


def GenerateBctDef(settings, bct_db):
output_file_path = settings["path_to_src"] + r"src_user/TlmCmd/"
output_file_path = settings["path_to_src"] + r"src_user/tlm_cmd/"
output_file_name = "block_command_definitions.h"

DATA_SART_ROW = 2
Expand Down Expand Up @@ -191,7 +191,7 @@ def OutputCmdDefC_(file_path, body, settings):
* @brief コマンド定義
* @note このコードは自動生成されています!
*/
#include <src_core/TlmCmd/command_analyze.h>
#include <src_core/tlm_cmd/command_analyze.h>
#include "command_definitions.h"
#include "command_source.h"
Expand Down
4 changes: 2 additions & 2 deletions my_mod/tlm_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ def OutputTlmBufferH_(file_path, name, body, settings):
#include "./{_obc_name_lower}_telemetry_definitions.h"
#include <src_core/Drivers/Super/driver_super.h>
#include <src_core/TlmCmd/common_tlm_packet.h>
#include <src_core/TlmCmd/telemetry_frame.h>
#include <src_core/tlm_cmd/common_tlm_packet.h>
#include <src_core/tlm_cmd/telemetry_frame.h>
"""[
1:
Expand Down
4 changes: 2 additions & 2 deletions my_mod/tlm_def.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def GenerateTlmDef(settings, tlm_db):
output_file_path = settings["path_to_src"] + r"src_user/TlmCmd/"
output_file_path = settings["path_to_src"] + r"src_user/tlm_cmd/"
output_file_name_base = "telemetry_definitions"

DATA_START_ROW = 8
Expand Down Expand Up @@ -155,7 +155,7 @@ def OutputTlmDefC_(file_path, body, settings):
* @brief テレメトリ定義
* @note このコードは自動生成されています!
*/
#include <src_core/TlmCmd/telemetry_frame.h>
#include <src_core/tlm_cmd/telemetry_frame.h>
#include "telemetry_definitions.h"
#include "telemetry_source.h"
Expand Down

0 comments on commit 98388c8

Please sign in to comment.