File tree Expand file tree Collapse file tree 5 files changed +28
-1
lines changed
cortex-m7/fpv5-sp-d16-softfp Expand file tree Collapse file tree 5 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ https://github.com/ros2/tinydir_vendor.git f1ee71b2fb02b24ee40123a905b16922938ca
25
25
https://github.com/ros2/libyaml_vendor.git 50546eff5f0146c027d63d7e2e473c9956e2eabf
26
26
https://github.com/ros2/test_interface_files.git c4d710e3394ad09a71a257f5490688653fb441b3
27
27
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
29
29
https://github.com/micro-ROS/rosidl_typesupport_microxrcedds.git 6cb7eaf4b633e037d1efe9f89416549c44cba2e6
30
30
https://github.com/micro-ROS/rcl 8068191ed4f5379b84ec8a8fb5879f38e3720c77
31
31
https://github.com/micro-ROS/rmw-microxrcedds.git b969cca2fa1a7d5e18e87996b9b82bef59837801
Original file line number Diff line number Diff line change @@ -49,6 +49,33 @@ rclc_node_init_default(
49
49
const char * namespace_ ,
50
50
rclc_support_t * support );
51
51
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
+
52
79
#if __cplusplus
53
80
}
54
81
#endif
You can’t perform that action at this time.
0 commit comments