File tree Expand file tree Collapse file tree 9 files changed +16
-4
lines changed
mk64fx512/fpv4-sp-d16-hard Expand file tree Collapse file tree 9 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ https://github.com/ros2/rcl_logging.git d22a6630f039bee97c6667394def926a5426a673
16
16
https://github.com/ros2/common_interfaces.git 0377ea7b95d98457284d0fbfc01bc53f16ca3332
17
17
https://github.com/ros-controls/control_msgs 653b646ba34d2166149cc02269bac0f48beb72b0
18
18
https://github.com/eProsima/Micro-CDR.git bf546d5d10ef0a81e0a6f8561c7e9a54ef0b20b0
19
- https://github.com/eProsima/Micro-XRCE-DDS-Client.git 29e709e8fb255e164a2d480cf19a53ae07a293a2
19
+ https://github.com/eProsima/Micro-XRCE-DDS-Client.git f491b3d2c573935ac39fe5f520463b1a06acaae9
20
20
https://github.com/micro-ROS/rcl 12da7d8fead1667a36f1217b8a177d59d8f83c68
21
21
https://github.com/micro-ROS/rcutils 1fdfd3cd2b645ce683fe3e150feeac7c4a1bf073
22
22
https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing d11b87737245b8456bbada44dfa7b1d670b1c4d0
23
23
https://github.com/micro-ROS/micro_ros_msgs.git 9a3968d4694f516ded8bdbfe23e2a487477bb8b4
24
24
https://github.com/micro-ROS/rosidl_typesupport.git e09988aa7bc7b803d5874bd482af89eb0705f12d
25
25
https://github.com/micro-ROS/rosidl_typesupport_microxrcedds.git def62d87c20ee709d20196c04688c68afcce259e
26
- https://github.com/micro-ROS/rmw-microxrcedds.git fb0c24e67fff5d629811b50093248dcece562a74
26
+ https://github.com/micro-ROS/rmw-microxrcedds.git 22ed452d06381ea770b92d74dd9e4cd4d6b64551
27
27
https://github.com/ros2/rclc aec6e900cdb12765db71bd4cc990c7de37e2cab2
28
28
https://github.com/ros2/ament_cmake_ros.git 7b6b599c3fc8023806db2a97b344e8610902adac
29
29
https://github.com/ament/ament_package.git 3397bb0ae1cc93d93e1e27da31c0bcb0f4fe0f46
Original file line number Diff line number Diff line change @@ -115,6 +115,18 @@ UXRDLLAPI uint16_t uxr_buffer_create_subscriber_bin(
115
115
uxrObjectId participant_id ,
116
116
uint8_t mode );
117
117
118
+ /**
119
+ * The enum that identifies the durability of the QoS of the DDS entity.
120
+ */
121
+
122
+ typedef enum uxrQoSDurability
123
+ {
124
+ UXR_DURABILITY_VOLATILE = 0 ,
125
+ UXR_DURABILITY_TRANSIENT_LOCAL ,
126
+ UXR_DURABILITY_TRANSIENT ,
127
+ UXR_DURABILITY_PERSISTENT
128
+ } uxrQoSDurability ;
129
+
118
130
/**
119
131
* @brief Buffers into the stream identified by `stream_id` an XRCE CREATE submessage with an XRCE DataWriter payload.
120
132
* The submessage will be sent when `uxr_flash_output_streams` or `uxr_run_session` function are called.
@@ -142,7 +154,7 @@ UXRDLLAPI uint16_t uxr_buffer_create_datawriter_bin(
142
154
uxrObjectId topic_id ,
143
155
bool reliable ,
144
156
bool keep_last ,
145
- bool transient_local ,
157
+ uxrQoSDurability durability ,
146
158
uint8_t mode );
147
159
148
160
/**
@@ -172,7 +184,7 @@ UXRDLLAPI uint16_t uxr_buffer_create_datareader_bin(
172
184
uxrObjectId topic_id ,
173
185
bool reliable ,
174
186
bool keep_last ,
175
- bool transient_local ,
187
+ uxrQoSDurability durability ,
176
188
uint8_t mode );
177
189
/**
178
190
* @brief Buffers into the stream identified by `stream_id` an XRCE CREATE submessage with an XRCE Requester payload.
You can’t perform that action at this time.
0 commit comments