Skip to content

Commit 4762b8b

Browse files
micro-ROS Library auto-update 10-11-2020 08:27 (#24)
Co-authored-by: pablogs9 <pablogs9@users.noreply.github.com>
1 parent 9f5bdf2 commit 4762b8b

File tree

5 files changed

+28
-1
lines changed

5 files changed

+28
-1
lines changed

built_packages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ https://github.com/ros2/tinydir_vendor.git f1ee71b2fb02b24ee40123a905b16922938ca
2525
https://github.com/ros2/libyaml_vendor.git 50546eff5f0146c027d63d7e2e473c9956e2eabf
2626
https://github.com/ros2/test_interface_files.git c4d710e3394ad09a71a257f5490688653fb441b3
2727
https://github.com/micro-ROS/rosidl_typesupport.git 2b644340e327b486873c012fcbc075dbde6fe44c
28-
https://github.com/micro-ROS/rclc 443b5c40c022321b9f4a3b72d69eefc90edce6b4
28+
https://github.com/micro-ROS/rclc 343bd05a95e321d170e2826eef11086b0c960862
2929
https://github.com/micro-ROS/rosidl_typesupport_microxrcedds.git 6cb7eaf4b633e037d1efe9f89416549c44cba2e6
3030
https://github.com/micro-ROS/rcl 8068191ed4f5379b84ec8a8fb5879f38e3720c77
3131
https://github.com/micro-ROS/rmw-microxrcedds.git b969cca2fa1a7d5e18e87996b9b82bef59837801
508 Bytes
Binary file not shown.
300 Bytes
Binary file not shown.

src/mk20dx256/libmicroros.a

284 Bytes
Binary file not shown.

src/rclc/node.h

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,33 @@ rclc_node_init_default(
4949
const char * namespace_,
5050
rclc_support_t * support);
5151

52+
/**
53+
* Creates a RCL node with options.
54+
*
55+
* * <hr>
56+
* Attribute | Adherence
57+
* ------------------ | -------------
58+
* Allocates Memory | Yes (in this function and in RCL)
59+
* Thread-Safe | No
60+
* Uses Atomics | No
61+
* Lock-Free | Yes
62+
*
63+
* \param[in] name the name of the node
64+
* \param[in] namespace the namespace of the node
65+
* \param[in] support the rclc_support_t object
66+
* \param[in] node_ops node options
67+
* \return rcl_node_t if successful
68+
* \return NULL if an error occurred
69+
*/
70+
rcl_ret_t
71+
rclc_node_init_with_options(
72+
rcl_node_t * node,
73+
const char * name,
74+
const char * namespace_,
75+
rclc_support_t * support,
76+
rcl_node_options_t * node_ops);
77+
78+
5279
#if __cplusplus
5380
}
5481
#endif

0 commit comments

Comments
 (0)