Skip to content

Commit 785504f

Browse files
micro-ROS foxy Library auto-update 18-05-2021 06:26 (#265)
Co-authored-by: pablogs9 <[email protected]>
1 parent 9902f7a commit 785504f

File tree

9 files changed

+16
-4
lines changed

9 files changed

+16
-4
lines changed

built_packages

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ https://github.com/ros2/rcl_logging.git d22a6630f039bee97c6667394def926a5426a673
1616
https://github.com/ros2/common_interfaces.git 0377ea7b95d98457284d0fbfc01bc53f16ca3332
1717
https://github.com/ros-controls/control_msgs 653b646ba34d2166149cc02269bac0f48beb72b0
1818
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
2020
https://github.com/micro-ROS/rcl 12da7d8fead1667a36f1217b8a177d59d8f83c68
2121
https://github.com/micro-ROS/rcutils 1fdfd3cd2b645ce683fe3e150feeac7c4a1bf073
2222
https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing d11b87737245b8456bbada44dfa7b1d670b1c4d0
2323
https://github.com/micro-ROS/micro_ros_msgs.git 9a3968d4694f516ded8bdbfe23e2a487477bb8b4
2424
https://github.com/micro-ROS/rosidl_typesupport.git e09988aa7bc7b803d5874bd482af89eb0705f12d
2525
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
2727
https://github.com/ros2/rclc aec6e900cdb12765db71bd4cc990c7de37e2cab2
2828
https://github.com/ros2/ament_cmake_ros.git 7b6b599c3fc8023806db2a97b344e8610902adac
2929
https://github.com/ament/ament_package.git 3397bb0ae1cc93d93e1e27da31c0bcb0f4fe0f46

src/cortex-m0plus/libmicroros.a

276 Bytes
Binary file not shown.

src/cortex-m3/libmicroros.a

260 Bytes
Binary file not shown.
264 Bytes
Binary file not shown.
252 Bytes
Binary file not shown.
256 Bytes
Binary file not shown.

src/mk20dx256/libmicroros.a

248 Bytes
Binary file not shown.
252 Bytes
Binary file not shown.

src/uxr/client/core/session/create_entities_bin.h

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,18 @@ UXRDLLAPI uint16_t uxr_buffer_create_subscriber_bin(
115115
uxrObjectId participant_id,
116116
uint8_t mode);
117117

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+
118130
/**
119131
* @brief Buffers into the stream identified by `stream_id` an XRCE CREATE submessage with an XRCE DataWriter payload.
120132
* 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(
142154
uxrObjectId topic_id,
143155
bool reliable,
144156
bool keep_last,
145-
bool transient_local,
157+
uxrQoSDurability durability,
146158
uint8_t mode);
147159

148160
/**
@@ -172,7 +184,7 @@ UXRDLLAPI uint16_t uxr_buffer_create_datareader_bin(
172184
uxrObjectId topic_id,
173185
bool reliable,
174186
bool keep_last,
175-
bool transient_local,
187+
uxrQoSDurability durability,
176188
uint8_t mode);
177189
/**
178190
* @brief Buffers into the stream identified by `stream_id` an XRCE CREATE submessage with an XRCE Requester payload.

0 commit comments

Comments
 (0)