rcl/rcl_yaml_param_parser
hyunseok-yang d07003847b Increase MAX_STRING_SIZE (#487)
* Increase MAX_STRING_SIZE

It's too short for string length.
It occurs the error when the string field in yaml files are too long....

Signed-off-by: Hyunseok Yang <hyunseok7.yang@lge.com>

* update test to match increased limit

Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
2019-08-23 14:52:46 -07:00
..
include/rcl_yaml_param_parser [YAML Parser] Support parameter value parsing (#471) 2019-07-12 15:07:42 -03:00
src Increase MAX_STRING_SIZE (#487) 2019-08-23 14:52:46 -07:00
test Increase MAX_STRING_SIZE (#487) 2019-08-23 14:52:46 -07:00
CHANGELOG.rst 0.7.4 2019-05-29 18:43:41 -05:00
CMakeLists.txt [YAML Parser] Support parameter value parsing (#471) 2019-07-12 15:07:42 -03:00
package.xml [YAML Parser] Support parameter value parsing (#471) 2019-07-12 15:07:42 -03: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