Included features (#644)

* Included features

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

* Added feedback

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

* fix on rcl_yaml_param_parser doxygen

Signed-off-by: ahcorde <ahcorde@gmail.com>
This commit is contained in:
Alejandro Hernández Cordero 2020-05-08 08:48:03 +02:00 committed by GitHub
parent 728b8b89bd
commit 0f0424fe7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 27 additions and 9 deletions

View file

@ -1,8 +1,7 @@
# rcl
This repository contains several packages which are all related to the `rcl` package.
## Packages
- rcl
- rcl_action
- rcl_lifecycle
- rcl_yaml_parm_parser
- [rcl](rcl/README.md)
- [rcl_action](rcl_action/README.md)
- [rcl_lifecycle](rcl_lifecycle/README.md)
- [rcl_yaml_param_parser](rcl_yaml_param_parser/README.md)

View file

@ -2,5 +2,6 @@
Library to support implementation of language specific ROS Client Libraries.
This package claims to be in the **Quality Level 4** category, see the [Quality Declaration](./QUALITY_DECLARATION.md) for more details.
Features are described in detail at [http://docs.ros2.org](http://docs.ros2.org/latest/api/rcl/index.html)
This package claims to be in the **Quality Level 4** category, see the [Quality Declaration](./QUALITY_DECLARATION.md) for more details.

View file

@ -2,6 +2,8 @@
`rcl_action` provides functionality for ROS 2 actions in C.
Features are described in detail at [http://docs.ros2.org](http://docs.ros2.org/latest/api/rcl_action/index.html)
For more information about ROS 2 actions, see:
http://design.ros2.org/articles/actions.html

View file

@ -2,6 +2,8 @@
`rcl_lifecycle` provides functionality for ROS 2 lifecycle nodes in C.
Features are described in detail at [http://docs.ros2.org](http://docs.ros2.org/latest/api/rcl_lifecycle/index.html)
For more information about lifecycle nodes, see:
https://design.ros2.org/articles/node_lifecycle.html

View file

@ -1,6 +1,8 @@
**ROS2 rcl YAML paramter parser**
Parse a YAML parameter file and populate the C data structure
Parse a YAML parameter file and populate the C data structure.
Features are described in detail at [http://docs.ros2.org](http://docs.ros2.org/latest/api/rcl_yaml_param_parser/index.html)
The data structure params_st will then be used during node initialization
@ -24,7 +26,7 @@ NOTE: It only supports canonical int and float types
<field2_name>: <field2_value>
```
This package depends on C libyaml
This package depends on C libyaml.
## Quality Declaration

View file

@ -12,6 +12,18 @@
// See the License for the specific language governing permissions and
// limitations under the License.
/** \mainpage rcl_yaml_param_parser: Parse a YAML parameter file and populate the C data structure
*
* - Parser
* - rcl/parser.h
*
* Some useful abstractions and utilities:
* - Return code types
* - rcl/types.h
* - Macros for controlling symbol visibility on the library
* - rcl/visibility_control.h
*/
#ifndef RCL_YAML_PARAM_PARSER__PARSER_H_
#define RCL_YAML_PARAM_PARSER__PARSER_H_