rcl/rcl_yaml_param_parser
dhood f1293b7d3b
[yaml parser] Fix FQN=//node_name when ns is / (#299)
* Fix FQN=//node_name when ns is /

* Check end of string for ns sep

* Add regression test
2018-09-21 14:50:48 -07:00
..
include/rcl_yaml_param_parser Doc fixups (#288) 2018-08-31 18:32:27 -07:00
src [yaml parser] Fix FQN=//node_name when ns is / (#299) 2018-09-21 14:50:48 -07:00
test [yaml parser] Fix FQN=//node_name when ns is / (#299) 2018-09-21 14:50:48 -07:00
CHANGELOG.rst 0.5.0 2018-06-25 14:38:04 -07:00
CMakeLists.txt YAML parameter parser (#235) 2018-05-29 18:07:02 +02:00
package.xml 0.5.0 2018-06-25 14:38:04 -07:00
README.md params -> ros__parameters 2018-06-18 21:37:16 -07:00

ROS2 rcl YAML paramter parser

Parse a YAML parameter file and populate the C data structure

The data structure params_st will then be used during node initialization

YAML parameter file should follow the yaml syntax shown below

NOTE: It only supports canonical int and float types

<node_namespace_string>:  # optional
  <node1_name>:
    ros__parameters:
      <field_name>: <field_value>
      <parameter_namespace_string>:   # optional
        <field1_name>: <field1_value>
        <field2_name>: <field2_value>
  <node2_name>:
    ros__parameters:
      <field_name>: <field_value>
      <parameter_namespace_string>:   # optional
        <field1_name>: <field1_value>
        <field2_name>: <field2_value>

This package depends on C libyaml