rcl/rcl_yaml_param_parser
Alejandro Hernández Cordero f1bc651394 Improved rcl_yaml_param_parser benchmark test (#810)
Signed-off-by: ahcorde <ahcorde@gmail.com>
2020-10-08 08:45:33 +02:00
..
include/rcl_yaml_param_parser [foxy backport] Refactor parser.c for better testability (#754) (#784) 2020-10-05 18:01:07 -07:00
src Fix yaml parser error when meets .nan (refactor on #754) (#781) (#785) 2020-10-05 18:12:26 -07:00
test Improved rcl_yaml_param_parser benchmark test (#810) 2020-10-08 08:45:33 +02:00
CHANGELOG.rst 1.1.8 2020-10-07 10:41:11 -07:00
CMakeLists.txt Added benchmark test to rcl_yaml_param_parser (#803) 2020-10-08 08:45:33 +02:00
Doxyfile Removed doxygen warnings (#712) (#724) 2020-07-22 15:23:48 +02:00
package.xml Added benchmark test to rcl_yaml_param_parser (#803) 2020-10-08 08:45:33 +02:00
QUALITY_DECLARATION.md Add Security Vulnerability Policy pointing to REP-2006. (#661) 2020-05-29 16:49:34 -04: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.