rcl/rcl_yaml_param_parser
Alejandro Hernández Cordero 4376552e7c
[Backport Foxy] Update QD (#843)
* Update tracetools' QL to 2 in rcl's QD (#690)

Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>

* Fix link to latest API docs (#692)

Signed-off-by: Jorge Perez <jjperez@ekumenlabs.com>

* Update quality declaration and coverage (#674)

* Update quality level and coverage

Signed-off-by: ahcorde <ahcorde@gmail.com>

* Added feedback

Signed-off-by: ahcorde <ahcorde@gmail.com>

* Fixed wording and links

Signed-off-by: ahcorde <ahcorde@gmail.com>

* Updated QD

Signed-off-by: ahcorde <ahcorde@gmail.com>

* udpate QD links to foxy

Signed-off-by: ahcorde <ahcorde@gmail.com>

* Update tracetools QL and add to rcl_lifecycle's QD (#845)

List tracetools in rcl_lifecycle's QD

Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>

* update QL dependencies on rcl_yaml_param_parser

Signed-off-by: ahcorde <ahcorde@gmail.com>

* Updated QD

Signed-off-by: ahcorde <ahcorde@gmail.com>

* Updated QD

Signed-off-by: ahcorde <ahcorde@gmail.com>

Co-authored-by: Christophe Bedard <bedard.christophe@gmail.com>
Co-authored-by: Jorge Perez <jjperez@ekumenlabs.com>
2020-11-05 08:10:57 +01: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 Add mocking unit tests for rcl_yaml_param_parser (coverage part 3/3) (#772) 2020-10-09 09:02:32 +02:00
CHANGELOG.rst 1.1.9 2020-11-03 08:31:48 +01:00
CMakeLists.txt Add mocking unit tests for rcl_yaml_param_parser (coverage part 3/3) (#772) 2020-10-09 09:02:32 +02:00
Doxyfile Removed doxygen warnings (#712) (#724) 2020-07-22 15:23:48 +02:00
package.xml 1.1.9 2020-11-03 08:31:48 +01:00
QUALITY_DECLARATION.md [Backport Foxy] Update QD (#843) 2020-11-05 08:10:57 +01:00
README.md [Backport Foxy] Update QD (#843) 2020-11-05 08:10:57 +01: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 2 category, see the Quality Declaration for more details.