From 6a8cfa5c6f57f1b2df9d3b8d87b9764ec8a19797 Mon Sep 17 00:00:00 2001 From: Sik Yoon Date: Sat, 2 Dec 2023 03:01:34 +0900 Subject: [PATCH] Change to real mode --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 8695f11..abbd06d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,7 +22,7 @@ pub enum RunningMode { TEST, REAL, } -pub const RUNNING_MODE: RunningMode = RunningMode::SIMUL; +pub const RUNNING_MODE: RunningMode = RunningMode::REAL; pub mod coex; pub mod coin_health_check_team;