Skip to content
Snippets Groups Projects
Commit 87322223 authored by Johann Mantel's avatar Johann Mantel
Browse files

make property scanner_type optional

parent c79446b9
No related branches found
No related tags found
1 merge request!185Clean up interfaces and unneeded code in memory core classes
...@@ -134,7 +134,7 @@ namespace armarx ...@@ -134,7 +134,7 @@ namespace armarx
def->optional(properties.topicName, "topicName", "Name of the topic"); def->optional(properties.topicName, "topicName", "Name of the topic");
//Scanner parameters //Scanner parameters
def->optional(properties.devices, "devices", "List of Devices in format frame1,ip1,port1;frame2,ip2,port2"); def->optional(properties.devices, "devices", "List of Devices in format frame1,ip1,port1;frame2,ip2,port2");
def->required(properties.scannerType, "scannerType", "Name of the LaserScanner"); def->optional(properties.scannerType, "scannerType", "Name of the LaserScanner");
def->optional(properties.timelimit, "timelimit", "timelimit for communication"); def->optional(properties.timelimit, "timelimit", "timelimit for communication");
def->optional(properties.rangeMin, "rangeMin", "minimum Range of the Scanner"); def->optional(properties.rangeMin, "rangeMin", "minimum Range of the Scanner");
def->optional(properties.rangeMax, "rangeMax", "maximum Range of the Scanner"); def->optional(properties.rangeMax, "rangeMax", "maximum Range of the Scanner");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment