Skip to content

Commit ec8fc92

Browse files
micro-ROS foxy Library auto-update 26-02-2021 06:20 (#143)
Co-authored-by: pablogs9 <[email protected]>
1 parent 54c7855 commit ec8fc92

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

built_packages

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ https://github.com/ament/ament_cmake.git a56c3beb042ffd63db53ffaf6a6bb41157df79c
55
https://github.com/ament/ament_package.git 952ae0f14639c9c8f683e3338c377dae5cd3a54e
66
https://github.com/ament/ament_index.git dd678ad846fdf3692df4177539c2a277d68b22b9
77
https://github.com/ament/uncrustify_vendor.git 0291bc988c45846400aca50cb973bf04a4de3d56
8-
https://github.com/ament/googletest.git 2ba0f63751cd94815a9aff30f85579fedc7f0e16
8+
https://github.com/ament/googletest.git 69ff0aa660dd25ecdc8a1fe91505c3c58e0032c2
99
https://github.com/ros2/test_interface_files.git c4d710e3394ad09a71a257f5490688653fb441b3
1010
https://github.com/ros2/rcpputils.git f666db79dcc1a62a085050533e56bb3dc27dc9f6
1111
https://github.com/ros2/common_interfaces.git 3927af17998a4f59f77f67d8ced4ec94a4f1589f
@@ -30,5 +30,5 @@ https://github.com/micro-ROS/rcl 8eddc13db38bdecdd3089b8c96d13f0df3f5b35d
3030
https://github.com/micro-ROS/rosidl_typesupport_microxrcedds.git f917106cd82ad17853e48ea2641b50563cd473dd
3131
https://github.com/micro-ROS/rclc 1bfad129443d65b8dfe74e098cb59d9a6fbaf46f
3232
https://github.com/ros-controls/control_msgs 653b646ba34d2166149cc02269bac0f48beb72b0
33-
https://github.com/eProsima/Micro-XRCE-DDS-Client.git 545e0da82657349e4f071846d937c47494f75572
34-
https://github.com/eProsima/Micro-CDR.git c95c40f427e421bcdf259f52501414dfbc2b2b22
33+
https://github.com/eProsima/Micro-XRCE-DDS-Client.git e9112b026504e79c1bc4a1d9d3635bd44ecd95ee
34+
https://github.com/eProsima/Micro-CDR.git 2f1a688a9f7ca8379e64a8941bf5ce27bd7b1f94

src/ucdr/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
// Version defines
1919
#define MICROCDR_VERSION_MAJOR 1
2020
#define MICROCDR_VERSION_MINOR 2
21-
#define MICROCDR_VERSION_MICRO 0
22-
#define MICROCDR_VERSION_STR "1.2.0"
21+
#define MICROCDR_VERSION_MICRO 1
22+
#define MICROCDR_VERSION_STR "1.2.1"
2323

2424
// ucdrEndianness defines
2525
#define UCDR_MACHINE_ENDIANNESS UCDR_LITTLE_ENDIANNESS

src/uxr/client/profile/transport/custom/custom_transport.h

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,24 @@ extern "C"
2727

2828
struct uxrCustomTransport;
2929

30-
typedef bool (*open_custom_func)(struct uxrCustomTransport*);
31-
typedef bool (*close_custom_func)(struct uxrCustomTransport*);
32-
typedef size_t (*write_custom_func)(struct uxrCustomTransport*, const uint8_t*, size_t, uint8_t*);
33-
typedef size_t (*read_custom_func)(struct uxrCustomTransport*, uint8_t*, size_t, int, uint8_t*);
30+
typedef bool (*open_custom_func) (
31+
struct uxrCustomTransport* transport);
32+
33+
typedef bool (*close_custom_func) (
34+
struct uxrCustomTransport* transport);
35+
36+
typedef size_t (*write_custom_func) (
37+
struct uxrCustomTransport* transport,
38+
const uint8_t* buffer,
39+
size_t length,
40+
uint8_t* error_code);
41+
42+
typedef size_t (*read_custom_func) (
43+
struct uxrCustomTransport* transport,
44+
uint8_t* buffer,
45+
size_t length,
46+
int timeout,
47+
uint8_t* error_code);
3448

3549
typedef struct uxrCustomTransport
3650
{

0 commit comments

Comments
 (0)