Skip to content

Commit

Permalink
Merge pull request #572 from ut-issl/feature/update_tlm-cmd-code-gene…
Browse files Browse the repository at this point in the history
…rator

Pre Release (v3.9.0-beta.5): tlm-cmd-code-generator の更新
  • Loading branch information
meltingrabbit authored May 11, 2023
2 parents 6a70ce9 + 084d0a1 commit b0097a6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2a-core"
version = "3.9.0-beta.4"
version = "3.9.0-beta.5"
edition = "2021"

description = "Core of Command Centric Architecture"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @brief コマンド定義
* @note このコードは自動生成されています!
*/
#include "../../src_core/TlmCmd/command_analyze.h"
#include <src_core/TlmCmd/command_analyze.h>
#include "command_definitions.h"
#include "command_source.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @brief テレメトリ定義
* @note このコードは自動生成されています!
*/
#include "../../src_core/TlmCmd/telemetry_frame.h"
#include <src_core/TlmCmd/telemetry_frame.h>
#include "telemetry_definitions.h"
#include "telemetry_source.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @brief コマンド定義
* @note このコードは自動生成されています!
*/
#include "../../src_core/TlmCmd/command_analyze.h"
#include <src_core/TlmCmd/command_analyze.h>
#include "command_definitions.h"
#include "command_source.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @brief テレメトリ定義
* @note このコードは自動生成されています!
*/
#include "../../src_core/TlmCmd/telemetry_frame.h"
#include <src_core/TlmCmd/telemetry_frame.h>
#include "telemetry_definitions.h"
#include "telemetry_source.h"

Expand Down
2 changes: 1 addition & 1 deletion c2a_core_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ void C2A_core_main(void);
#define C2A_CORE_VER_MAJOR (3)
#define C2A_CORE_VER_MINOR (9)
#define C2A_CORE_VER_PATCH (0)
#define C2A_CORE_VER_PRE ("beta.4")
#define C2A_CORE_VER_PRE ("beta.5")

#endif

0 comments on commit b0097a6

Please sign in to comment.