1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 01:50:46 +02:00

Change default activation mode to 'Never'

Maintains default behavior of indigo that no controller activation is required.
Enabling required activation can be done by passing 'require_activation' as Always/OnStartup
to the ur_common.launch or by modifying corresponding launch files.
This commit is contained in:
Henning Kayser
2017-08-17 13:39:05 +02:00
parent f70255926b
commit 231840fabf
3 changed files with 14 additions and 11 deletions

View File

@@ -14,8 +14,8 @@ enum class RobotState
enum class ActivationMode
{
Always,
Never,
Always,
OnStartup
};