Skip to content

Commit afcf1a4

Browse files
committed
Switch back default of headless mode in example
1 parent 7577407 commit afcf1a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/instruction_executor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ int main(int argc, char* argv[])
5858
robot_ip = std::string(argv[1]);
5959
}
6060

61-
bool headless_mode = false;
61+
bool headless_mode = true;
6262
g_my_robot = std::make_unique<urcl::ExampleRobotWrapper>(robot_ip, OUTPUT_RECIPE, INPUT_RECIPE, headless_mode,
6363
"external_control.urp");
6464
if (!g_my_robot->getUrDriver()->checkCalibration(CALIBRATION_CHECKSUM))
@@ -113,4 +113,4 @@ int main(int argc, char* argv[])
113113

114114
g_my_robot->getUrDriver()->stopControl();
115115
return 0;
116-
}
116+
}

0 commit comments

Comments
 (0)