Skip to content

Commit

Permalink
Merge pull request #521 from ut-issl/develop
Browse files Browse the repository at this point in the history
Merge develop to main for hotfix #519
  • Loading branch information
200km authored Oct 17, 2023
2 parents 45c0c76 + 956b9c6 commit 83a0846
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/components/real/cdh/on_board_computer_with_c2a.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
#ifdef USE_C2A
#include "src_core/c2a_core_main.h"

#if C2A_CORE_VER_MAJOR == 4
#if !defined(C2A_CORE_VER_MAJOR)
#warning "C2A_CORE_VER_MAJOR is not defined" # this flag is defined after c2a-core v3.5.0
#elif C2A_CORE_VER_MAJOR == 4
// c2a-core v4
#include "src_core/system/task_manager/task_dispatcher.h"
#include "src_core/system/time_manager/time_manager.h"
Expand All @@ -22,7 +24,6 @@
#else
#error "c2a-core version is not supported"
#endif // c2a-core version header

#endif // USE_C2A

std::map<int, UartPort*> ObcWithC2a::com_ports_c2a_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
#include <regex>

#ifdef USE_C2A
#if C2A_CORE_VER_MAJOR == 4
#include "src_core/c2a_core_main.h"
#if !defined(C2A_CORE_VER_MAJOR)
#warning "C2A_CORE_VER_MAJOR is not defined" # this flag is defined after c2a-core v3.5.0
#elif C2A_CORE_VER_MAJOR == 4
// c2a-core v4
#include "src_core/tlm_cmd/common_cmd_packet_util.h"
#elif C2A_CORE_VER_MAJOR <= 3
Expand Down

0 comments on commit 83a0846

Please sign in to comment.