From cc34c5a37dc073a7730ac65a8bc9060de810d61f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=82=A8=EC=83=81=EC=97=BD?= Date: Tue, 21 Apr 2026 15:50:10 +0900 Subject: [PATCH] =?UTF-8?q?feat=20:=20navigation=20test=20command=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/dto/navigation_test_command.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/dto/navigation_test_command.h diff --git a/include/dto/navigation_test_command.h b/include/dto/navigation_test_command.h new file mode 100644 index 0000000..fbbe5cf --- /dev/null +++ b/include/dto/navigation_test_command.h @@ -0,0 +1,13 @@ +#ifndef NAVIGATION_TEST_COMMAND_H +#define NAVIGATION_TEST_COMMAND_H + +#include "../enum/icd_id.h" + +#pragma pack(push, 1) +struct NavigationTestCommand { + IcdId message_id; + bool is_start; // 테스트 시작 여부(1 = 시작, 0 = 종료) +}; +#pragma pack(pop) + +#endif // NAVIGATION_TEST_COMMAND_H \ No newline at end of file