rcl/rcl_yaml_param_parser
Jacob Perron 75e475819b 1.1.1
2020-05-26 19:30:32 -07:00
..
include/rcl_yaml_param_parser Included features (#644) 2020-05-08 08:48:03 +02:00
src Increase rcl_yaml_param_parser test coverage (#656) 2020-05-26 12:45:36 -07:00
test Increase rcl_yaml_param_parser test coverage (#656) 2020-05-26 12:45:36 -07:00
CHANGELOG.rst 1.1.1 2020-05-26 19:30:32 -07:00
CMakeLists.txt Increase rcl_yaml_param_parser test coverage (#656) 2020-05-26 12:45:36 -07:00
Doxyfile added rcl yaml param parser doxyfile (#634) 2020-04-29 09:17:30 +02:00
package.xml 1.1.1 2020-05-26 19:30:32 -07:00
QUALITY_DECLARATION.md Updated QDs for 1.0 (#647) 2020-05-12 17:55:21 -07:00
README.md Included features (#644) 2020-05-08 08:48:03 +02:00

ROS2 rcl YAML paramter parser

Parse a YAML parameter file and populate the C data structure.

Features are described in detail at http://docs.ros2.org

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.

Quality Declaration

This package claims to be in the Quality Level 4 category, see the Quality Declaration for more details.